mindspore.async_ckpt_thread_status
- mindspore.async_ckpt_thread_status()[source]
Get the status of asynchronous save checkpoint thread.
Note
The interface is deprecated from version 2.5 and will be removed in a future version.
When performing asynchronous save checkpoint, you can determine whether the asynchronous thread is completed.
- Returns
bool.
Trueif asynchronous save checkpoint thread is running,Falseif asynchronous save checkpoint thread is not executing.
Examples
>>> import mindspore as ms >>> ms.async_ckpt_thread_status() False