mindspore.device_context.ascend.op_tuning.op_compile

查看源文件
mindspore.device_context.ascend.op_tuning.op_compile(value)[源代码]

是否选择在线编译,框架默认设置为静态shape选择在线编译,动态shape选择算子二进制文件,该默认设置将来可能会发生变化。 如果您想了解更多详细信息, 请查询 昇腾社区 了解。

参数:
  • value (bool) - 表示是否选择在线编译。

    • True: 优先选择在线编译。

    • False: 优先选择系统中已经编译好的算子二进制文件,提升编译性能。

样例:

>>> import mindspore as ms
>>> ms.device_context.ascend.op_tuning.op_compile(True)