mindspore.dataset.config.get_callback_timeout

mindspore.dataset.config.get_callback_timeout()

获取 mindspore.dataset.WaitedDSCallback 的默认超时时间。 如果出现死锁,等待的函数将在超时时间结束后退出。

返回:

int,表示在出现死锁情况下,用于结束 mindspore.dataset.WaitedDSCallback 中的等待函数的超时时间(秒)。

样例:

>>> # Get the global configuration of callback timeout.
>>> # If set_callback_timeout() is never called before, the default value(60) will be returned.
>>> callback_timeout = ds.config.get_callback_timeout()