mindspore.runtime.launch_blocking ======================================= .. image:: https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/master/resource/_static/logo_source.svg :target: https://gitee.com/mindspore/mindspore/blob/master/docs/api/api_python/runtime/mindspore.runtime.launch_blocking.rst :alt: 查看源文件 .. py:function:: mindspore.runtime.launch_blocking() 表示启动设备同步执行,会降低程序的执行性能。 - 未调用此接口的初始状态下,算子会在设备上以异步方式执行。此时,当算子执行出错时,将无法定位特定错误脚本代码的位置。 - 调用此接口后,算子会在设备上以同步方式执行。此时,当算子执行出错时,可以根据错误的调用栈来定位错误脚本代码的位置。