From afeb43c388dc5fb8d4130526a16f9ff746757c42 Mon Sep 17 00:00:00 2001 From: yixin <2050485123@qq.com> Date: Wed, 25 Dec 2024 09:04:28 +0800 Subject: [PATCH] add comments for _extends/graph_kernel/_init_.py --- .../python/mindspore/_extends/graph_kernel/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mindspore2022/mindspore/python/mindspore/_extends/graph_kernel/__init__.py b/src/mindspore2022/mindspore/python/mindspore/_extends/graph_kernel/__init__.py index 495b8fb0..d59153e3 100644 --- a/src/mindspore2022/mindspore/python/mindspore/_extends/graph_kernel/__init__.py +++ b/src/mindspore2022/mindspore/python/mindspore/_extends/graph_kernel/__init__.py @@ -13,6 +13,9 @@ # limitations under the License. # ============================================================================ """init""" +# 从splitter模块中导入split_with_json函数 from .splitter import split_with_json +# 从expander模块中导入get_op_expander函数 from .expander import get_op_expander +# 从parallel_estimate模块中导入estimate_calculation_amount和estimate_ops函数 from .parallel_estimate import estimate_calculation_amount, estimate_ops