mindstudio-probe 1.0.1__py3-none-any.whl → 1.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/METADATA +5 -1
- mindstudio_probe-1.0.3.dist-info/RECORD +272 -0
- msprobe/README.md +78 -23
- msprobe/__init__.py +1 -0
- msprobe/config/README.md +182 -40
- msprobe/config/config.json +22 -0
- msprobe/core/__init__.py +0 -0
- msprobe/{pytorch → core}/advisor/advisor.py +3 -3
- msprobe/{pytorch → core}/advisor/advisor_result.py +2 -2
- msprobe/core/common/const.py +82 -5
- msprobe/core/common/exceptions.py +30 -18
- msprobe/core/common/file_check.py +19 -1
- msprobe/core/common/log.py +15 -1
- msprobe/core/common/utils.py +130 -30
- msprobe/core/common_config.py +32 -19
- msprobe/core/compare/acc_compare.py +299 -0
- msprobe/core/compare/check.py +95 -0
- msprobe/core/compare/compare_cli.py +49 -0
- msprobe/core/compare/highlight.py +222 -0
- msprobe/core/compare/multiprocessing_compute.py +149 -0
- msprobe/{pytorch → core}/compare/npy_compare.py +55 -4
- msprobe/core/compare/utils.py +429 -0
- msprobe/core/data_dump/data_collector.py +39 -35
- msprobe/core/data_dump/data_processor/base.py +85 -37
- msprobe/core/data_dump/data_processor/factory.py +5 -7
- msprobe/core/data_dump/data_processor/mindspore_processor.py +198 -0
- msprobe/core/data_dump/data_processor/pytorch_processor.py +94 -51
- msprobe/core/data_dump/json_writer.py +11 -11
- msprobe/core/grad_probe/__init__.py +0 -0
- msprobe/core/grad_probe/constant.py +71 -0
- msprobe/core/grad_probe/grad_compare.py +175 -0
- msprobe/core/grad_probe/utils.py +52 -0
- msprobe/doc/grad_probe/grad_probe.md +207 -0
- msprobe/doc/grad_probe/img/image-1.png +0 -0
- msprobe/doc/grad_probe/img/image-2.png +0 -0
- msprobe/doc/grad_probe/img/image-3.png +0 -0
- msprobe/doc/grad_probe/img/image-4.png +0 -0
- msprobe/doc/grad_probe/img/image.png +0 -0
- msprobe/mindspore/api_accuracy_checker/__init__.py +0 -0
- msprobe/mindspore/api_accuracy_checker/api_accuracy_checker.py +246 -0
- msprobe/mindspore/api_accuracy_checker/api_info.py +69 -0
- msprobe/mindspore/api_accuracy_checker/api_runner.py +152 -0
- msprobe/mindspore/api_accuracy_checker/base_compare_algorithm.py +197 -0
- msprobe/mindspore/api_accuracy_checker/compute_element.py +224 -0
- msprobe/mindspore/api_accuracy_checker/main.py +16 -0
- msprobe/mindspore/api_accuracy_checker/type_mapping.py +114 -0
- msprobe/mindspore/api_accuracy_checker/utils.py +63 -0
- msprobe/mindspore/cell_processor.py +34 -0
- msprobe/mindspore/common/const.py +87 -0
- msprobe/mindspore/common/log.py +38 -0
- msprobe/mindspore/common/utils.py +57 -0
- msprobe/mindspore/compare/distributed_compare.py +75 -0
- msprobe/mindspore/compare/ms_compare.py +117 -0
- msprobe/mindspore/compare/ms_graph_compare.py +317 -0
- msprobe/mindspore/compare/ms_to_pt_api.yaml +399 -0
- msprobe/mindspore/debugger/debugger_config.py +38 -15
- msprobe/mindspore/debugger/precision_debugger.py +79 -4
- msprobe/mindspore/doc/compare.md +58 -0
- msprobe/mindspore/doc/dump.md +158 -6
- msprobe/mindspore/dump/dump_tool_factory.py +19 -22
- msprobe/mindspore/dump/hook_cell/api_registry.py +104 -0
- msprobe/mindspore/dump/hook_cell/hook_cell.py +53 -0
- msprobe/mindspore/dump/hook_cell/support_wrap_ops.yaml +925 -0
- msprobe/mindspore/dump/hook_cell/wrap_functional.py +91 -0
- msprobe/mindspore/dump/hook_cell/wrap_tensor.py +63 -0
- msprobe/mindspore/dump/jit_dump.py +56 -0
- msprobe/mindspore/dump/kernel_kbyk_dump.py +65 -0
- msprobe/mindspore/free_benchmark/__init__.py +0 -0
- msprobe/mindspore/free_benchmark/api_pynative_self_check.py +116 -0
- msprobe/mindspore/free_benchmark/common/__init__.py +0 -0
- msprobe/mindspore/free_benchmark/common/config.py +12 -0
- msprobe/mindspore/free_benchmark/common/handler_params.py +17 -0
- msprobe/mindspore/free_benchmark/common/utils.py +71 -0
- msprobe/mindspore/free_benchmark/data/support_wrap_ops.yaml +842 -0
- msprobe/mindspore/free_benchmark/decorator/__init__.py +0 -0
- msprobe/mindspore/free_benchmark/decorator/dec_forward.py +42 -0
- msprobe/mindspore/free_benchmark/decorator/decorator_factory.py +107 -0
- msprobe/mindspore/free_benchmark/handler/__init__.py +0 -0
- msprobe/mindspore/free_benchmark/handler/base_handler.py +90 -0
- msprobe/mindspore/free_benchmark/handler/check_handler.py +41 -0
- msprobe/mindspore/free_benchmark/handler/fix_handler.py +36 -0
- msprobe/mindspore/free_benchmark/handler/handler_factory.py +21 -0
- msprobe/mindspore/free_benchmark/perturbation/add_noise.py +67 -0
- msprobe/mindspore/free_benchmark/perturbation/base_perturbation.py +21 -0
- msprobe/mindspore/free_benchmark/perturbation/bit_noise.py +63 -0
- msprobe/mindspore/free_benchmark/perturbation/improve_precision.py +34 -0
- msprobe/mindspore/free_benchmark/perturbation/no_change.py +12 -0
- msprobe/mindspore/free_benchmark/perturbation/perturbation_factory.py +27 -0
- msprobe/mindspore/free_benchmark/self_check_tool_factory.py +33 -0
- msprobe/mindspore/grad_probe/__init__.py +0 -0
- msprobe/mindspore/grad_probe/global_context.py +91 -0
- msprobe/mindspore/grad_probe/grad_analyzer.py +231 -0
- msprobe/mindspore/grad_probe/grad_monitor.py +27 -0
- msprobe/mindspore/grad_probe/grad_stat_csv.py +132 -0
- msprobe/mindspore/grad_probe/hook.py +92 -0
- msprobe/mindspore/grad_probe/utils.py +29 -0
- msprobe/mindspore/ms_config.py +63 -15
- msprobe/mindspore/overflow_check/overflow_check_tool_factory.py +17 -15
- msprobe/mindspore/runtime.py +4 -0
- msprobe/mindspore/service.py +354 -0
- msprobe/mindspore/task_handler_factory.py +7 -4
- msprobe/msprobe.py +66 -26
- msprobe/pytorch/__init__.py +1 -1
- msprobe/pytorch/api_accuracy_checker/common/config.py +21 -16
- msprobe/pytorch/api_accuracy_checker/common/utils.py +1 -60
- msprobe/pytorch/api_accuracy_checker/compare/algorithm.py +2 -5
- msprobe/pytorch/api_accuracy_checker/compare/api_precision_compare.py +46 -10
- msprobe/pytorch/api_accuracy_checker/compare/compare.py +84 -48
- msprobe/pytorch/api_accuracy_checker/compare/compare_utils.py +8 -12
- msprobe/pytorch/api_accuracy_checker/config.yaml +7 -1
- msprobe/pytorch/api_accuracy_checker/run_ut/data_generate.py +15 -11
- msprobe/pytorch/api_accuracy_checker/run_ut/multi_run_ut.py +11 -15
- msprobe/pytorch/api_accuracy_checker/run_ut/run_overflow_check.py +16 -9
- msprobe/pytorch/api_accuracy_checker/run_ut/run_ut.py +193 -105
- msprobe/pytorch/api_accuracy_checker/run_ut/run_ut_utils.py +68 -1
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/__init__.py +0 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/attl.py +202 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/client.py +324 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/device_dispatch.py +204 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/server.py +218 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/ssl_config.py +10 -0
- msprobe/pytorch/bench_functions/__init__.py +15 -0
- msprobe/pytorch/bench_functions/apply_adam_w.py +28 -0
- msprobe/pytorch/bench_functions/confusion_transpose.py +19 -0
- msprobe/pytorch/bench_functions/fast_gelu.py +55 -0
- msprobe/pytorch/bench_functions/layer_norm_eval.py +6 -0
- msprobe/pytorch/bench_functions/linear.py +12 -0
- msprobe/pytorch/bench_functions/matmul_backward.py +48 -0
- msprobe/pytorch/bench_functions/npu_fusion_attention.py +421 -0
- msprobe/pytorch/bench_functions/rms_norm.py +15 -0
- msprobe/pytorch/bench_functions/rotary_mul.py +52 -0
- msprobe/pytorch/bench_functions/scaled_mask_softmax.py +26 -0
- msprobe/pytorch/bench_functions/swiglu.py +55 -0
- msprobe/pytorch/common/parse_json.py +3 -1
- msprobe/pytorch/common/utils.py +83 -7
- msprobe/pytorch/compare/distributed_compare.py +19 -64
- msprobe/pytorch/compare/match.py +3 -6
- msprobe/pytorch/compare/pt_compare.py +40 -0
- msprobe/pytorch/debugger/debugger_config.py +11 -2
- msprobe/pytorch/debugger/precision_debugger.py +34 -4
- msprobe/pytorch/doc/api_accuracy_checker.md +57 -13
- msprobe/pytorch/doc/api_accuracy_checker_online.md +187 -0
- msprobe/pytorch/doc/dump.md +73 -20
- msprobe/pytorch/doc/ptdbg_ascend_compare.md +75 -11
- msprobe/pytorch/doc/ptdbg_ascend_quickstart.md +3 -3
- msprobe/pytorch/doc/run_overflow_check.md +1 -1
- msprobe/pytorch/doc//321/206/320/247/320/260/321/206/320/260/320/227/321/206/320/255/320/226/321/205/342/225/226/320/265/321/205/320/225/342/225/226/321/205/320/254/342/225/221/321/206/320/251/320/277/321/211/320/272/320/234/321/210/320/277/320/221/321/205/320/242/320/234/321/206/320/220/320/267/321/210/320/223/342/225/234/321/205/320/257/342/225/221/321/207/342/225/221/342/224/220/321/206/320/232/320/265/321/205/320/241/320/232.md +151 -0
- msprobe/pytorch/free_benchmark/common/constant.py +3 -0
- msprobe/pytorch/free_benchmark/common/utils.py +4 -0
- msprobe/pytorch/free_benchmark/compare/grad_saver.py +22 -26
- msprobe/pytorch/free_benchmark/main.py +7 -4
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/add_noise.py +1 -1
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/bit_noise.py +1 -1
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/change_value.py +1 -1
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/improve_precision.py +3 -3
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/no_change.py +1 -1
- msprobe/pytorch/free_benchmark/perturbed_layers/run_cpu.py +1 -1
- msprobe/pytorch/free_benchmark/result_handlers/base_handler.py +43 -29
- msprobe/pytorch/free_benchmark/result_handlers/handler_factory.py +0 -1
- msprobe/pytorch/function_factory.py +75 -0
- msprobe/pytorch/functional/dump_module.py +4 -4
- msprobe/pytorch/grad_probe/__init__.py +0 -0
- msprobe/pytorch/grad_probe/grad_monitor.py +90 -0
- msprobe/pytorch/grad_probe/grad_stat_csv.py +129 -0
- msprobe/pytorch/hook_module/hook_module.py +14 -3
- msprobe/pytorch/hook_module/support_wrap_ops.yaml +2 -1
- msprobe/pytorch/hook_module/utils.py +9 -9
- msprobe/pytorch/hook_module/wrap_aten.py +20 -10
- msprobe/pytorch/hook_module/wrap_distributed.py +10 -7
- msprobe/pytorch/hook_module/wrap_functional.py +4 -7
- msprobe/pytorch/hook_module/wrap_npu_custom.py +21 -10
- msprobe/pytorch/hook_module/wrap_tensor.py +5 -6
- msprobe/pytorch/hook_module/wrap_torch.py +5 -7
- msprobe/pytorch/hook_module/wrap_vf.py +6 -8
- msprobe/pytorch/module_processer.py +53 -13
- msprobe/pytorch/online_dispatch/compare.py +4 -4
- msprobe/pytorch/online_dispatch/dispatch.py +39 -41
- msprobe/pytorch/online_dispatch/dump_compare.py +17 -47
- msprobe/pytorch/online_dispatch/single_compare.py +5 -5
- msprobe/pytorch/online_dispatch/utils.py +2 -43
- msprobe/pytorch/parse_tool/lib/compare.py +31 -19
- msprobe/pytorch/parse_tool/lib/config.py +2 -1
- msprobe/pytorch/parse_tool/lib/parse_tool.py +4 -4
- msprobe/pytorch/parse_tool/lib/utils.py +34 -80
- msprobe/pytorch/parse_tool/lib/visualization.py +4 -3
- msprobe/pytorch/pt_config.py +100 -6
- msprobe/pytorch/service.py +104 -19
- mindstudio_probe-1.0.1.dist-info/RECORD +0 -228
- msprobe/mindspore/dump/api_kbk_dump.py +0 -55
- msprobe/pytorch/compare/acc_compare.py +0 -1024
- msprobe/pytorch/compare/highlight.py +0 -100
- msprobe/test/core_ut/common/test_utils.py +0 -345
- msprobe/test/core_ut/data_dump/test_data_collector.py +0 -47
- msprobe/test/core_ut/data_dump/test_json_writer.py +0 -183
- msprobe/test/core_ut/data_dump/test_scope.py +0 -151
- msprobe/test/core_ut/test_common_config.py +0 -152
- msprobe/test/core_ut/test_file_check.py +0 -218
- msprobe/test/core_ut/test_log.py +0 -109
- msprobe/test/mindspore_ut/test_api_kbk_dump.py +0 -51
- msprobe/test/mindspore_ut/test_debugger_config.py +0 -42
- msprobe/test/mindspore_ut/test_dump_tool_factory.py +0 -51
- msprobe/test/mindspore_ut/test_kernel_graph_dump.py +0 -66
- msprobe/test/mindspore_ut/test_kernel_graph_overflow_check.py +0 -63
- msprobe/test/mindspore_ut/test_ms_config.py +0 -69
- msprobe/test/mindspore_ut/test_overflow_check_tool_factory.py +0 -51
- msprobe/test/mindspore_ut/test_precision_debugger.py +0 -56
- msprobe/test/mindspore_ut/test_task_handler_factory.py +0 -58
- msprobe/test/pytorch_ut/advisor/test_advisor.py +0 -83
- msprobe/test/pytorch_ut/api_accuracy_checker/common/test_common_utils.py +0 -108
- msprobe/test/pytorch_ut/api_accuracy_checker/common/test_config.py +0 -39
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_algorithm.py +0 -112
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_api_precision_compare.py +0 -77
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare.py +0 -125
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare_column.py +0 -10
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare_utils.py +0 -43
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/dump.json +0 -179
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/forward.json +0 -63
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_data_generate.py +0 -99
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_multi_run_ut.py +0 -115
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_run_ut.py +0 -72
- msprobe/test/pytorch_ut/compare/test_acc_compare.py +0 -17
- msprobe/test/pytorch_ut/free_benchmark/perturbed_layers/test_perturbed_layser.py +0 -105
- msprobe/test/pytorch_ut/free_benchmark/result_handlers/test_result_handler.py +0 -121
- msprobe/test/pytorch_ut/free_benchmark/test_main.py +0 -101
- msprobe/test/pytorch_ut/functional/test_dump_module.py +0 -15
- msprobe/test/pytorch_ut/hook_module/test_api_registry.py +0 -130
- msprobe/test/pytorch_ut/hook_module/test_hook_module.py +0 -42
- msprobe/test/pytorch_ut/hook_module/test_wrap_aten.py +0 -65
- msprobe/test/pytorch_ut/hook_module/test_wrap_distributed.py +0 -35
- msprobe/test/pytorch_ut/hook_module/test_wrap_functional.py +0 -20
- msprobe/test/pytorch_ut/hook_module/test_wrap_tensor.py +0 -35
- msprobe/test/pytorch_ut/hook_module/test_wrap_torch.py +0 -43
- msprobe/test/pytorch_ut/hook_module/test_wrap_vf.py +0 -11
- msprobe/test/pytorch_ut/test_pt_config.py +0 -69
- msprobe/test/pytorch_ut/test_service.py +0 -59
- msprobe/test/resources/advisor.txt +0 -3
- msprobe/test/resources/compare_result_20230703104808.csv +0 -9
- msprobe/test/resources/compare_result_without_accuracy.csv +0 -9
- msprobe/test/resources/config.yaml +0 -3
- msprobe/test/resources/npu_test.pkl +0 -8
- msprobe/test/run_test.sh +0 -30
- msprobe/test/run_ut.py +0 -58
- msprobe/test/test_module_processer.py +0 -64
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/LICENSE +0 -0
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/WHEEL +0 -0
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/entry_points.txt +0 -0
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/top_level.txt +0 -0
- /msprobe/{pytorch → core}/advisor/advisor_const.py +0 -0
- /msprobe/pytorch/doc/{atat → msprobe}/321/207/342/226/223/342/225/233/321/205/342/225/221/320/266/321/205/342/225/226/320/265/321/205/320/225/342/225/226/321/206/320/245/342/226/221/321/206/320/235/320/276dump/321/206/320/260/320/227/321/205/320/227/320/226/321/206/320/220/320/267/321/210/320/223/342/225/234/321/205/320/257/342/225/221/321/207/342/225/221/342/224/220/321/206/320/232/320/265/321/205/320/241/320/232.md" +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mindstudio-probe
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Pytorch Ascend Probe Utils
|
|
5
5
|
Home-page: https://gitee.com/ascend/mstt/tree/master/debug/accuracy_tools/msprobe
|
|
6
6
|
Author: Ascend Team
|
|
@@ -20,11 +20,15 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
20
20
|
Requires-Python: >=3.6.2
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: wheel
|
|
23
|
+
Requires-Dist: einops
|
|
23
24
|
Requires-Dist: numpy
|
|
24
25
|
Requires-Dist: pandas >=1.3.5
|
|
25
26
|
Requires-Dist: pyyaml
|
|
26
27
|
Requires-Dist: rich
|
|
27
28
|
Requires-Dist: tqdm
|
|
28
29
|
Requires-Dist: openpyxl
|
|
30
|
+
Requires-Dist: pyOpenSSL
|
|
31
|
+
Requires-Dist: twisted
|
|
32
|
+
Requires-Dist: matplotlib
|
|
29
33
|
|
|
30
34
|
MindStudio-Probe is a set of tools for diagnosing and improving model accuracy on Ascend NPU, including API acc checker, ptdbg, grad tool etc.
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
msprobe/README.md,sha256=9KnKzi4Q2iDq5sqC41j6W2XChOYPF3fOmU0XVQQZvoc,8285
|
|
2
|
+
msprobe/__init__.py,sha256=syp-SBJqUvsTl2TRa4iyHzvWMmFmkBjtu2VvVRPcdgA,63
|
|
3
|
+
msprobe/msprobe.py,sha256=l1Xpxv9PaelsE5wLAGvjaRHHQL69FKVqxK9cLf8IAOo,5323
|
|
4
|
+
msprobe/config/README.md,sha256=XI8QwAXSO4_77i7Pt99La4DJiPpXY5aXM1_DWXtXGnM,33445
|
|
5
|
+
msprobe/config/config.json,sha256=AsM7KEgykz_H8pdZ5Lcfd9TvQGHnrf-v6HCdUJrdqWs,1188
|
|
6
|
+
msprobe/config/img/free_benchmark.png,sha256=TjEImRJHHyt0-0R1fFWdhx1y4Lx8PM3wYgrF2XInkS0,72372
|
|
7
|
+
msprobe/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
msprobe/core/common_config.py,sha256=jnQX57sw4lgYls6JfGQ5HyevPOAxhPlQOtq2k-aUH1s,4288
|
|
9
|
+
msprobe/core/advisor/advisor.py,sha256=Hldemuwj2nfgYmfKAPnAMPq-e84ABHcWS46fjhmVOhQ,5754
|
|
10
|
+
msprobe/core/advisor/advisor_const.py,sha256=nNiet9GsBatvO2SWjJ8GLejZB3yzyMUYlStsTCihvi4,2701
|
|
11
|
+
msprobe/core/advisor/advisor_result.py,sha256=UxjoRyW6MZum6L2fpsIBx6L_REGd5zGdlQ8zmbBluqo,2496
|
|
12
|
+
msprobe/core/common/const.py,sha256=dX2veNqaVUmzmYlQmzNmwXg3BtUmWTR61BcH9_BwaiA,10007
|
|
13
|
+
msprobe/core/common/exceptions.py,sha256=ePPd_nObsKkJgSfd1LC5dFqEgRtHEk2Db5uxZPFYuOA,2981
|
|
14
|
+
msprobe/core/common/file_check.py,sha256=jvBwtk-GzXhrPQkfcaaNpsbcoGBnEfGwuGun3gvtBrM,11268
|
|
15
|
+
msprobe/core/common/log.py,sha256=8oDJiXEDLj9oHP1hJFQ9f_D90xTj3-oKq-OLrU8YeSA,1909
|
|
16
|
+
msprobe/core/common/utils.py,sha256=IiN-B3GapGr973wWRNfVRzF-nkmcheijw97OwATqkME,24190
|
|
17
|
+
msprobe/core/compare/acc_compare.py,sha256=p77xjRu0BJ8EmoPNzQ_sxBD3yyu_hmJ7rqUO6JR6W3Q,15136
|
|
18
|
+
msprobe/core/compare/check.py,sha256=ZPzHPklApTbI6XVvrH4LuZjGR3VLs0L7giPC5VBa5kY,3788
|
|
19
|
+
msprobe/core/compare/compare_cli.py,sha256=uT69FnX3OEBcio5aJBIWiEZyx6etkvTvTw5OqMJZ5GE,2569
|
|
20
|
+
msprobe/core/compare/highlight.py,sha256=dtv6bOAyBy93ROXP5bdd5YP_QmP4nvblu2jnPL7vIJw,10465
|
|
21
|
+
msprobe/core/compare/multiprocessing_compute.py,sha256=ORRw3HwW8741j-w0QnR2L92Ht5pN1B17Iac1AQ8TMSo,6055
|
|
22
|
+
msprobe/core/compare/npy_compare.py,sha256=i61wTlGcItsQx9io2gr-foXrf86V67VxVYbw1G2JeuM,12152
|
|
23
|
+
msprobe/core/compare/utils.py,sha256=qQ-ktJwn1V-TGxLgqRm1iwQ5Tm0kLOhGLUfKaqoNvm8,19690
|
|
24
|
+
msprobe/core/data_dump/data_collector.py,sha256=OtAY8WkbFEGo2culjHW5sJQvHmKGDZD1ejF9ZdMqWbM,6145
|
|
25
|
+
msprobe/core/data_dump/json_writer.py,sha256=NMDQoUXaHjpZtQ9SnsqzXAg4TkkQRdsoNBQigdZ3zLA,4855
|
|
26
|
+
msprobe/core/data_dump/scope.py,sha256=WwVC0VtWLU2jgsbOtd2cjf2tQlcX0SwfzrE6NAzX-5E,6199
|
|
27
|
+
msprobe/core/data_dump/data_processor/base.py,sha256=4ctbQJlpDJgh5LuDlSyVEVrzUMGSYjUuYbRXrtWixC4,11137
|
|
28
|
+
msprobe/core/data_dump/data_processor/factory.py,sha256=rPERRHBuwDFSidgy48V7amw8oHULG7-h1wvaOuQ_f1w,3133
|
|
29
|
+
msprobe/core/data_dump/data_processor/mindspore_processor.py,sha256=rYR9V8KMXbbGhwdNIe7X9U69dnFwgo_nV71eH8qBIHU,8512
|
|
30
|
+
msprobe/core/data_dump/data_processor/pytorch_processor.py,sha256=ohgMVDvgObYHQgxA_fKztf7tO40xI7oGERP7qKI2Drs,17178
|
|
31
|
+
msprobe/core/grad_probe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
+
msprobe/core/grad_probe/constant.py,sha256=fqQoukoT1fXhbr1kiXAQEhUaOLrAr5YpzcdLy5zeXSA,1711
|
|
33
|
+
msprobe/core/grad_probe/grad_compare.py,sha256=1jMv4igAlWlnAzjByezXLBur63vOleLPMIokoeOhhD0,7920
|
|
34
|
+
msprobe/core/grad_probe/utils.py,sha256=G98ZFklGUxp8t5IZmw47fCeMqWmUmAFPrVAHoVD8nEw,1596
|
|
35
|
+
msprobe/doc/grad_probe/grad_probe.md,sha256=S2yrRqaGQ5Xp_NkSWoUulIlibAA1GDg2gVIl-fmsyoQ,9267
|
|
36
|
+
msprobe/doc/grad_probe/img/image-1.png,sha256=CfCd5eWGxfajKaEIWz2wSv5do1EeJRg9WEMLI7wUqVs,42344
|
|
37
|
+
msprobe/doc/grad_probe/img/image-2.png,sha256=K7fC5F2ln5bYzqaXazF_adQhIdv4cjqPdo9qiQyc6uM,26563
|
|
38
|
+
msprobe/doc/grad_probe/img/image-3.png,sha256=x-xvegKI7yQEl4lFzrKA9K0zRdT6m6kTdvs1epXaTjg,22581
|
|
39
|
+
msprobe/doc/grad_probe/img/image-4.png,sha256=QX8iEZR4fiopqy2tFSPrWZo6AtYimYmpfy6rVVtXfk4,22779
|
|
40
|
+
msprobe/doc/grad_probe/img/image.png,sha256=Uva-rNS275o4l1vHXCKAAAQmGOuzkKhjiFrCdm7iHVY,11977
|
|
41
|
+
msprobe/mindspore/__init__.py,sha256=Ro5B5YJyFhyvzFBPTK4bKWfbRRCkQEiTrqPy7nk2cJ0,77
|
|
42
|
+
msprobe/mindspore/cell_processor.py,sha256=2KxjEOAqdfbkNx-ivmIyqYvqyEwEzlOaUv_tQirleBg,1214
|
|
43
|
+
msprobe/mindspore/ms_config.py,sha256=9Ad190_GPtDsHQTfP6lZsHEP7DriCwUqPus19jGDkE8,5320
|
|
44
|
+
msprobe/mindspore/runtime.py,sha256=c5MQPQmJjYUMOP3FO_HE4WITB-1YPXPonkUIwHP5nUw,94
|
|
45
|
+
msprobe/mindspore/service.py,sha256=esr-BIF3iWvKmiDR2zqoURhyftCLpNzKXW0Bak3OeLw,17941
|
|
46
|
+
msprobe/mindspore/task_handler_factory.py,sha256=YVPS7M7BVMzglS6_BCkCPJ-OqcKGbxAqmwndrW9NQRw,964
|
|
47
|
+
msprobe/mindspore/api_accuracy_checker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
msprobe/mindspore/api_accuracy_checker/api_accuracy_checker.py,sha256=6aeCwZXMT_vMmMP_dL7VL1FZpHYGAxF0IbZDZbONcho,12428
|
|
49
|
+
msprobe/mindspore/api_accuracy_checker/api_info.py,sha256=FKoSRqhKknXrMynxwXNidPJMB885lf4LK4IhS90nLig,3718
|
|
50
|
+
msprobe/mindspore/api_accuracy_checker/api_runner.py,sha256=7Cstpd-Kztk0fFXuKQfD21FXGJfr5hHF9a6OZsvdQcQ,7501
|
|
51
|
+
msprobe/mindspore/api_accuracy_checker/base_compare_algorithm.py,sha256=eV8bNUczHCfE-K78ZGyhdw8tPP6XomEgBOvTELR1PEM,7973
|
|
52
|
+
msprobe/mindspore/api_accuracy_checker/compute_element.py,sha256=dm59Xk05wo-s9eXkDX3Ssl2R8L5YHxQB51GQPuf7CC4,11205
|
|
53
|
+
msprobe/mindspore/api_accuracy_checker/main.py,sha256=fbdFPB52smGl2lR0C9TXOQuMQt67ify0atSxOh4Ay7w,859
|
|
54
|
+
msprobe/mindspore/api_accuracy_checker/type_mapping.py,sha256=fBjJiOQF-5vLUM0gA_RBglZz7cIjT6r0p9mMB0yaEl8,2561
|
|
55
|
+
msprobe/mindspore/api_accuracy_checker/utils.py,sha256=A2hptAc2XkdnQrmbwki3R6kAcJVE-0YpXwktfCIoFoE,2400
|
|
56
|
+
msprobe/mindspore/common/const.py,sha256=l4PSxSAuBpBhO5nl0ZJx4iACsCQi9uuo9OIQFCKTe5Q,2490
|
|
57
|
+
msprobe/mindspore/common/log.py,sha256=w6Fjl_QzDMXIm2l6FesXlRPH19Jbtn4LrTgaNpzAfzU,1242
|
|
58
|
+
msprobe/mindspore/common/utils.py,sha256=lL8GFpsWVOmrhDWQ30_ryxO_wzWkJZ3YqDExwGZLugc,1978
|
|
59
|
+
msprobe/mindspore/compare/distributed_compare.py,sha256=Jg-oUZWBb7s6DCBr8SYGLu9JViAHTqwd_6_vwfL8BAA,3888
|
|
60
|
+
msprobe/mindspore/compare/ms_compare.py,sha256=f6mOM2S3hO2SSZY0dms-BStP9BtitSY9fJbFyO1UXIU,5622
|
|
61
|
+
msprobe/mindspore/compare/ms_graph_compare.py,sha256=kFN-X38FitKl8FWagLdB4FWDUVvPHloe-aiGW9e0FcE,16069
|
|
62
|
+
msprobe/mindspore/compare/ms_to_pt_api.yaml,sha256=VgC3Hzlr0e9DveVLR1PNFft7F_hPLo7Qi6lTOqDsY_Q,13602
|
|
63
|
+
msprobe/mindspore/debugger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
msprobe/mindspore/debugger/debugger_config.py,sha256=cPa6MVL4LzvSxBtXgqIwIlmTxpVfN1u6Re0rSuesLg8,3591
|
|
65
|
+
msprobe/mindspore/debugger/precision_debugger.py,sha256=bBmbfpDlzxO6NMeQBwVC-JOJLKs2l3RmWheC-h3O8W4,3927
|
|
66
|
+
msprobe/mindspore/doc/compare.md,sha256=kPpsz8-rShTJc4xwAsXZiajggCYyC10nRNhYkk6WOjo,4525
|
|
67
|
+
msprobe/mindspore/doc/dump.md,sha256=k0KcRzZijRRQhW5dXOw6SYfaQjhpAz4VQX-mXIfcQ4M,8975
|
|
68
|
+
msprobe/mindspore/dump/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
+
msprobe/mindspore/dump/dump_tool_factory.py,sha256=XK-vvetF94lBlM9ZRDIJP1g_HQwpi3L3RfC8CCBqkk8,1262
|
|
70
|
+
msprobe/mindspore/dump/jit_dump.py,sha256=fJUD9YXROvAv4MItsNFs3Lc7uR6IfxpgfDFZrYMLTt4,2080
|
|
71
|
+
msprobe/mindspore/dump/kernel_graph_dump.py,sha256=7HRHdzDP2y0xxTQ4i9QuSa3ymHwEFzE4wVLLtNiXUeg,3163
|
|
72
|
+
msprobe/mindspore/dump/kernel_kbyk_dump.py,sha256=Fa29rgc_lGWbOUCcd8pPxTEcomeEav4SoIgKCMjbvMY,2449
|
|
73
|
+
msprobe/mindspore/dump/hook_cell/api_registry.py,sha256=P6ZeajmWf85rE5lpXJ6tE16U6SRn5WgofYaOj2b3PLc,5015
|
|
74
|
+
msprobe/mindspore/dump/hook_cell/hook_cell.py,sha256=CubGKwSb2zJ4pxS40-0B-2-XiO4zCrgcVvLnixuJPv4,2034
|
|
75
|
+
msprobe/mindspore/dump/hook_cell/support_wrap_ops.yaml,sha256=W4AJ0p9-tJHwd9-W9CZ2nwu0tKCMxFOsFe3jjNkCxaI,13109
|
|
76
|
+
msprobe/mindspore/dump/hook_cell/wrap_functional.py,sha256=j2ma8cJm0Fe_O3BbQ_Sj1256WSeWFeUdVGt_FIhgcf8,3415
|
|
77
|
+
msprobe/mindspore/dump/hook_cell/wrap_tensor.py,sha256=CUyRiCJMbAqe9SN23-qDpOqHa2sVMELax6HPvF9_L-s,2051
|
|
78
|
+
msprobe/mindspore/free_benchmark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
+
msprobe/mindspore/free_benchmark/api_pynative_self_check.py,sha256=zpYFY3FvlN-SC9kUlh4IyONMqJLUJV8vFV8V-qzBLe0,4009
|
|
80
|
+
msprobe/mindspore/free_benchmark/self_check_tool_factory.py,sha256=3YZO_-sH7JjrryJZ-MvCIjBI7nArr6AT3lk_SN1XnBw,1170
|
|
81
|
+
msprobe/mindspore/free_benchmark/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
+
msprobe/mindspore/free_benchmark/common/config.py,sha256=teHbxMEE5xVZ0hX-RuIydvXBkJ5sUsgOg2m8lvpdd7g,396
|
|
83
|
+
msprobe/mindspore/free_benchmark/common/handler_params.py,sha256=tfYKfAauwZnYbWHUdxneFhXyqUqF9s4YK2agm-eVrHw,476
|
|
84
|
+
msprobe/mindspore/free_benchmark/common/utils.py,sha256=0FNam2KUvmruEmsnbOk2TPp3gNTNSxGAcaAdS8qkkQY,2212
|
|
85
|
+
msprobe/mindspore/free_benchmark/data/support_wrap_ops.yaml,sha256=Lb0U7uh8OwXqQLy0iiTetfpTx2L1feJn89uacjWgxqQ,11421
|
|
86
|
+
msprobe/mindspore/free_benchmark/decorator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
+
msprobe/mindspore/free_benchmark/decorator/dec_forward.py,sha256=U3IBm81kOwj8jyYGvOMIeLt-oIq-a-CQr-6TL0CMc2w,1822
|
|
88
|
+
msprobe/mindspore/free_benchmark/decorator/decorator_factory.py,sha256=w4BVMA9QQ5H_aO0RUoitkkXP9X-QMX903SJqihrOi6o,3027
|
|
89
|
+
msprobe/mindspore/free_benchmark/handler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
+
msprobe/mindspore/free_benchmark/handler/base_handler.py,sha256=wBuDFRB9_b2ioJHWkH0HgVajRbTmndMXbgNpfRRwTm0,4022
|
|
91
|
+
msprobe/mindspore/free_benchmark/handler/check_handler.py,sha256=DKd9rNNSMrEyvO5niElPR8P4CQXgUZ87-CZDvVvb1PI,1943
|
|
92
|
+
msprobe/mindspore/free_benchmark/handler/fix_handler.py,sha256=ij67h_NJ1ELlP1ViDlbthLZLRLZqtRp26ehMf-wC-6w,1412
|
|
93
|
+
msprobe/mindspore/free_benchmark/handler/handler_factory.py,sha256=XUUT1CQW5YWaWE7tQ2sNfPx24MtXPstdkCrH5HXzEf0,711
|
|
94
|
+
msprobe/mindspore/free_benchmark/perturbation/add_noise.py,sha256=XqMZOa2lphmEcJakEgjQWQL4-C0nNtBqzDJP74YCPSU,2199
|
|
95
|
+
msprobe/mindspore/free_benchmark/perturbation/base_perturbation.py,sha256=BJ4k4xB8TXlArgwnyFpanKAQgY2clJqnMkDDVSMnXow,667
|
|
96
|
+
msprobe/mindspore/free_benchmark/perturbation/bit_noise.py,sha256=jwTocdvbTZ23q8VXt2_B8PbZAj6ijFrqI9_eVe5ccIs,2831
|
|
97
|
+
msprobe/mindspore/free_benchmark/perturbation/improve_precision.py,sha256=m3G2PUvGjzLTyiLtwIH6pKnWm2cTvnGBuZhMoNYHcaw,1567
|
|
98
|
+
msprobe/mindspore/free_benchmark/perturbation/no_change.py,sha256=D4H5-qcDP01zaFMg9l9551Gj7tQwLvSRyQpAupeHn5o,443
|
|
99
|
+
msprobe/mindspore/free_benchmark/perturbation/perturbation_factory.py,sha256=Z0MGQbiTRG1kZRCI_gbIUJMVdQmtWR1FPhL1QddFGkQ,989
|
|
100
|
+
msprobe/mindspore/grad_probe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
+
msprobe/mindspore/grad_probe/global_context.py,sha256=oIoHqr1yVmdktsxNylVPPp4oqVjkV985vToj9RbWslE,3616
|
|
102
|
+
msprobe/mindspore/grad_probe/grad_analyzer.py,sha256=B4KwYwv7b3624J9WNFX6vXseCrED8k5cUVL6OyLZ314,9522
|
|
103
|
+
msprobe/mindspore/grad_probe/grad_monitor.py,sha256=bdjNQybVvruUpOA0rXhHBWOZkhOYfUTXK9qnosK3wnQ,962
|
|
104
|
+
msprobe/mindspore/grad_probe/grad_stat_csv.py,sha256=9AyKgSRP3bErsTsnbuDcekCAsm0qJTSklO9gfOnMz7w,3845
|
|
105
|
+
msprobe/mindspore/grad_probe/hook.py,sha256=4XPtiYeMvMeB5fG9ZJz-N9t54EUMvOEVCf0jGoodDLI,4263
|
|
106
|
+
msprobe/mindspore/grad_probe/utils.py,sha256=3rsO4iGW_6ZLJzMbjXBpiOImTeNlthjWPajKh4bR34I,1029
|
|
107
|
+
msprobe/mindspore/overflow_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
|
+
msprobe/mindspore/overflow_check/kernel_graph_overflow_check.py,sha256=YQHU-UvXZ5lWrkNprEPi1b7OYcnq7vj21Nw2aV2T2xc,2300
|
|
109
|
+
msprobe/mindspore/overflow_check/overflow_check_tool_factory.py,sha256=n7HuzZMMoas9EYOXVchfD1oPt0tqNbXDvDaV0PIKBr4,1230
|
|
110
|
+
msprobe/pytorch/__init__.py,sha256=b9Elq9SiAKxeF38DIR_6kVdFQ3MYcx-ecPOA27Y2PMI,198
|
|
111
|
+
msprobe/pytorch/function_factory.py,sha256=mroeZG6-nHNVjMvnxd9NB8IFYS-ESOoLwMvoRXuHuX0,2980
|
|
112
|
+
msprobe/pytorch/module_processer.py,sha256=RBveimG2_3iq0414O1OhZvLocEJUjlk7yr4qTEs5fCs,5791
|
|
113
|
+
msprobe/pytorch/parse.py,sha256=zWe8UyLYBXd6j4-9hpgWml5ph1aTaIakxx5TVUuI_jo,91
|
|
114
|
+
msprobe/pytorch/pt_config.py,sha256=1G3BMcAmHQyb_bhNEii9A8dQV7hSS-RpRQ_eCF14ryw,8285
|
|
115
|
+
msprobe/pytorch/service.py,sha256=Uz9W7nhV47oXZEW9ainUuNlYd-D3rzZwnreLc6vQHKU,12759
|
|
116
|
+
msprobe/pytorch/api_accuracy_checker/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
+
msprobe/pytorch/api_accuracy_checker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
|
+
msprobe/pytorch/api_accuracy_checker/config.yaml,sha256=iYzElbxT7YR2EbNXdyT_NFxTJCHLN6Oyza88QWOh168,152
|
|
119
|
+
msprobe/pytorch/api_accuracy_checker/common/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
|
+
msprobe/pytorch/api_accuracy_checker/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
+
msprobe/pytorch/api_accuracy_checker/common/config.py,sha256=2eGMAm1SAk-B1Dbcae9H7SdyoCmyI_KpppuzPGSKnts,2009
|
|
122
|
+
msprobe/pytorch/api_accuracy_checker/common/utils.py,sha256=7a5_DPOqcALU9XCrop01nbXRNIlKSKdibjPfbu7bYQ0,5553
|
|
123
|
+
msprobe/pytorch/api_accuracy_checker/compare/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
|
+
msprobe/pytorch/api_accuracy_checker/compare/algorithm.py,sha256=bm5OM1j8Cs7R-F558KXykjXgr8enI3AEgN63J8w8He4,8692
|
|
125
|
+
msprobe/pytorch/api_accuracy_checker/compare/api_precision_compare.py,sha256=7GvjJdFMkdROfCnnu28ZakjkYBVer9qlzlXLNhd61k4,30162
|
|
126
|
+
msprobe/pytorch/api_accuracy_checker/compare/api_precision_standard.yaml,sha256=amKXyTRW1mtC8zG4XHYPA0rS5uWVklRN8b62chF4tCE,2130
|
|
127
|
+
msprobe/pytorch/api_accuracy_checker/compare/api_precision_threshold.yaml,sha256=zz7xGrXohPNqZACWR2jpPGQcQyJE3smTIMpZVPEybSE,8502
|
|
128
|
+
msprobe/pytorch/api_accuracy_checker/compare/compare.py,sha256=uY54muBZKuN71WUwGn-XlqVCZqaL1uIjJ3KvAehR-8w,22387
|
|
129
|
+
msprobe/pytorch/api_accuracy_checker/compare/compare_column.py,sha256=T4CR8wSXXPjcUEqnjjn8gPNDxTQor7h8bNqGeJdXOrg,3980
|
|
130
|
+
msprobe/pytorch/api_accuracy_checker/compare/compare_utils.py,sha256=Ba430a4E_s6CWY9wD87f-Vcz0Ghp3JLsCKXMeBZjiAw,9361
|
|
131
|
+
msprobe/pytorch/api_accuracy_checker/run_ut/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
132
|
+
msprobe/pytorch/api_accuracy_checker/run_ut/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
|
+
msprobe/pytorch/api_accuracy_checker/run_ut/data_generate.py,sha256=B8Eh8R4lRMM90PsXh137dCvBMNlTug--3vMlDCEYQcg,13965
|
|
134
|
+
msprobe/pytorch/api_accuracy_checker/run_ut/multi_run_ut.py,sha256=fSbiTmmU_phatXxerTaUVOf_nyG5jEBz1Wwn362X1-s,8514
|
|
135
|
+
msprobe/pytorch/api_accuracy_checker/run_ut/run_overflow_check.py,sha256=-MNyri_JMCz26kDKFaHVZZd8BkeVLVSf1FMwyWIMgOA,5678
|
|
136
|
+
msprobe/pytorch/api_accuracy_checker/run_ut/run_ut.py,sha256=oyO6ZM8Oqj0Znn1DDkz2sDAqq8yP7i3vMVyPVE8cEgc,27334
|
|
137
|
+
msprobe/pytorch/api_accuracy_checker/run_ut/run_ut_utils.py,sha256=cQcQEAcfXtgdtwEc8X5UiHZN7o5dwS4T_UJ4WIemvp4,3525
|
|
138
|
+
msprobe/pytorch/api_accuracy_checker/run_ut/torch_ut_setting.json,sha256=jrB_gpVBWbqFLBfYlxzqDCiIf_i6W-IYVlnlsVrXcbg,43
|
|
139
|
+
msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
|
+
msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/attl.py,sha256=HHTU4k9FmUm4gCUFzTRkpJnw6GIJmt8sKkglUFWGgcI,8012
|
|
141
|
+
msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/client.py,sha256=EOC4YG9-bCZpPeLy57CcwIZ4XfKUHPJzbVAOK1Oftm8,12935
|
|
142
|
+
msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/device_dispatch.py,sha256=4ef4y0wlxpUBog8pld0HQoytyV3kU4kE4dVWlOscEXE,9531
|
|
143
|
+
msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/server.py,sha256=3daQSFa-RgZvvsBcdw6amUAevcQNbqBDYL5eV8WsKGg,9175
|
|
144
|
+
msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/ssl_config.py,sha256=lb4lpwjupiek8_wtEvtoMumvlXf0f7fk31_svlE9Y9M,328
|
|
145
|
+
msprobe/pytorch/bench_functions/__init__.py,sha256=nE2CHxF4m36xADmN1CaYZbrRCXHgLGYa9SZ97TjeQvA,548
|
|
146
|
+
msprobe/pytorch/bench_functions/apply_adam_w.py,sha256=mDsZppyG_VotXuc3cQSPlSq6NovVyUEkNUZnfdfljwQ,1112
|
|
147
|
+
msprobe/pytorch/bench_functions/confusion_transpose.py,sha256=krZjP4ucCOL6OehtuZwiUOWt9taYKT6DscHgHY1JCRU,695
|
|
148
|
+
msprobe/pytorch/bench_functions/fast_gelu.py,sha256=DrXoMKjERIAt6NcIqptEAfljgqSJXMHSMhXxgGHssdU,1316
|
|
149
|
+
msprobe/pytorch/bench_functions/layer_norm_eval.py,sha256=kQJMNR2jtrK4DJT7i32d8oOTahlTi557f7X8h0LMgkQ,162
|
|
150
|
+
msprobe/pytorch/bench_functions/linear.py,sha256=qHH-uWh3qCS4JEd2VHtmGLVhiz8OHQBxlNd6TbLBIzQ,338
|
|
151
|
+
msprobe/pytorch/bench_functions/matmul_backward.py,sha256=HdabOAwjlkInW0CiLtj4j2VsHFOU76on0yeO20RgboM,2574
|
|
152
|
+
msprobe/pytorch/bench_functions/npu_fusion_attention.py,sha256=3Ar3ADKnQF1B4PUMwFzI3UP_3btIPbwSb_KX-UR5D40,19081
|
|
153
|
+
msprobe/pytorch/bench_functions/rms_norm.py,sha256=fREkeeHmxUAT4dyAzSBd6samFC_MXuNWYKDLewWzqY4,475
|
|
154
|
+
msprobe/pytorch/bench_functions/rotary_mul.py,sha256=oIK-wTL0b-qqbk7ick7Y218ymXqyOzQoEbfTDz55kus,2505
|
|
155
|
+
msprobe/pytorch/bench_functions/scaled_mask_softmax.py,sha256=ObXR2JGavLwaUzYTLyQw1CfM0uFQZ6SL7-yBEJ0Bo6A,926
|
|
156
|
+
msprobe/pytorch/bench_functions/swiglu.py,sha256=8a6_5ToO6PLcBokBUhUAm_2zPhlawxMHfgm0a3kxSqg,2448
|
|
157
|
+
msprobe/pytorch/common/__init__.py,sha256=cWjNg380EvONkRTY_pKETlLJfG6WIt1D6EggWtEfVd0,87
|
|
158
|
+
msprobe/pytorch/common/compare_script.template,sha256=m3SZVmEsE_XepOgcc7SQP7tg7NISS0M6FXSEpDUdiKk,300
|
|
159
|
+
msprobe/pytorch/common/log.py,sha256=yQ6s4EV1JAJT6hEavBcui-QZFFnqMOwRWzyqUWnzj9k,1013
|
|
160
|
+
msprobe/pytorch/common/parse_json.py,sha256=307h5s5BClX5Li7pDiuATs2vpFmqXuIKlWRNWNAry6I,1536
|
|
161
|
+
msprobe/pytorch/common/utils.py,sha256=KlzqZ6GDFzulFFO25foJRxnB_nqvLC9OEP1jSc8WLc0,9794
|
|
162
|
+
msprobe/pytorch/compare/distributed_compare.py,sha256=kVunH8ZbdImaSCiIqZmETrCKt96wBy1MwKcV9WeB4N0,3517
|
|
163
|
+
msprobe/pytorch/compare/mapping.yaml,sha256=oF-roDRl14MbqDKYDZ-qZstZzrWwaXvaTI88sKeOnBQ,12304
|
|
164
|
+
msprobe/pytorch/compare/match.py,sha256=akVMEYJ_4mM5xx7zYFkZLCu5aH3UFKaE5QDW9Ul7HTI,1253
|
|
165
|
+
msprobe/pytorch/compare/pt_compare.py,sha256=3tKm6ztYgWCCdK6UzqCBauREaSDuM3Qf03RZfLtIUUY,2030
|
|
166
|
+
msprobe/pytorch/debugger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
+
msprobe/pytorch/debugger/debugger_config.py,sha256=UHEJuDyRfOfSXt13P7Cmx9cGnt370YEWjmIMSLxoZcU,5214
|
|
168
|
+
msprobe/pytorch/debugger/precision_debugger.py,sha256=aEgQjUNa7pbh-bIZTvZn3Xgpr4Ro8jl-7K09tR425Ps,4694
|
|
169
|
+
msprobe/pytorch/doc/FAQ.md,sha256=pfK9JSer3Yrqit3JaXeF8xtkntSfWl5PC5kDQMkeGyA,9233
|
|
170
|
+
msprobe/pytorch/doc/api_accuracy_checker.md,sha256=ghStWe9Jf2_PctvgfWyUBYj-F7Q_XpSDgAj82XXX7-Y,28988
|
|
171
|
+
msprobe/pytorch/doc/api_accuracy_checker_online.md,sha256=bcwgvyOrRLtO-EkGcgDciGluptped0gHMw-PCiO5674,9961
|
|
172
|
+
msprobe/pytorch/doc/dump.md,sha256=aFJCkutNZVyb81Y38R-snB0opIDp-c0IrxF84f7SzDw,10347
|
|
173
|
+
msprobe/pytorch/doc/msprobe精度工具数据dump标准性能基线报告.md,sha256=fmGiKL7xGhgS9Y2C2tHTVYM8K3VlTiQ5KpDz-_7kVhw,7108
|
|
174
|
+
msprobe/pytorch/doc/parse_tool.md,sha256=4VwXWOYGQKOrYS5lsYPT3lA6S2nQJnG3RHE_wshnM0Q,18987
|
|
175
|
+
msprobe/pytorch/doc/ptdbg_ascend_compare.md,sha256=eY9reVuWW9WiAJdcf_TKAbMMQoBsnT5v-_L_tyEoGoc,15645
|
|
176
|
+
msprobe/pytorch/doc/ptdbg_ascend_overview.md,sha256=alkLLssm9mub2unFu5nQ-NRyDGua9sPNdkjfXVw9Sb0,3152
|
|
177
|
+
msprobe/pytorch/doc/ptdbg_ascend_quickstart.md,sha256=Lb1Cd5BE-zO4-14BVpHlRMQSxkqwjUVQKOTowUg6EDc,15189
|
|
178
|
+
msprobe/pytorch/doc/run_overflow_check.md,sha256=H3Bjg_6B73ix9xa46p0I_Dnqo5tiKGO5RL_VGKVg1GE,1361
|
|
179
|
+
msprobe/pytorch/doc/在线精度比对.md,sha256=NxNBTP3eGyfTNsqdXF8hdL9T_1k_KISUBGZpH6Q50Qw,4493
|
|
180
|
+
msprobe/pytorch/doc/无标杆工具场景验证和性能基线报告.md,sha256=2J4OmP1YV5JpEOKbZP6ft4u3-NNKp9CNjeU2_3w1AtA,13956
|
|
181
|
+
msprobe/pytorch/doc/img/BLOOM-7B_1.png,sha256=Ul9XNHCX52PYufGaZ5mPfwTNJxwUO46KOKp7JxvDeAk,3534
|
|
182
|
+
msprobe/pytorch/doc/img/BLOOM-7B_2.png,sha256=HKefltWpBM2UkVHFy9rB238g6W5w-8CpsueW6Zf52HM,5251
|
|
183
|
+
msprobe/pytorch/doc/img/BLOOM-7B_3.png,sha256=gtL8dXIoqoJwk2Nd-KKChVM47IBdEY6KVYVRejnwKt0,5095
|
|
184
|
+
msprobe/pytorch/doc/img/BLOOM-7B_4.png,sha256=1yuQ2Dh7ak-VZt_kLprXVHtvfUxaxfsgrKdYzudHR94,4727
|
|
185
|
+
msprobe/pytorch/doc/img/GPT-3_1.png,sha256=EVm59Bvd3cX01RpZBqDyMVECjsiySTNy5RR9YyJoCTw,7898
|
|
186
|
+
msprobe/pytorch/doc/img/GPT-3_2.png,sha256=4wNkqagB28IJi808pnvUB72E03b2OeWdAASq5ggyl8A,6716
|
|
187
|
+
msprobe/pytorch/doc/img/GPT-3_3.png,sha256=6-fbdYtgcYU1xe9yOg6tAnKQ8SfZ6-x6rPVNSRxGP8I,8732
|
|
188
|
+
msprobe/pytorch/doc/img/GPT-3_4.png,sha256=QYpb7ZJaOAM_wJ5qdQQon0TKu7apVRL7ijovl18Uvzg,6609
|
|
189
|
+
msprobe/pytorch/doc/img/GPT-3_5.png,sha256=8eiCyqLmiaH6xwqpyTe3XTcesbGQUw8gApDI7ONBBkA,4676
|
|
190
|
+
msprobe/pytorch/doc/img/GPT-3_6.png,sha256=4IZvCeYHgK7gB87dgf6HgTaQ5uBK0s2sZXLblsDIVtQ,7658
|
|
191
|
+
msprobe/pytorch/doc/img/GPT-3_7.png,sha256=dil9jwfsYxtFupUu_aTCnKjuuEk3X_UMnqWJS0NzWCA,8139
|
|
192
|
+
msprobe/pytorch/doc/img/GPT-3_8.png,sha256=RNXIQgrCObpYtoKTkdTxr66AkndY_k2mGbksNgIqccQ,6084
|
|
193
|
+
msprobe/pytorch/doc/img/YOLOV5S_1.png,sha256=kCI017bFT7X3RrBPLMESTrnHZcRJYF-Ko_oJpjcsFWw,7019
|
|
194
|
+
msprobe/pytorch/doc/img/YOLOV5S_2.png,sha256=NH4vy35cGDl3qjlcUhDTWNpGEKcuboQ_YILxWQpvx40,5796
|
|
195
|
+
msprobe/pytorch/doc/img/accuracy_checking_details.png,sha256=dAedq5tbuzM3uEKPZzoanFSkzc0ep3HSW0r_3iTWMvE,39062
|
|
196
|
+
msprobe/pytorch/doc/img/accuracy_checking_result.png,sha256=6dVDcp3hl-zFIOgLigbRrMdgeBDiMfKWxupL8Hugvxo,6022
|
|
197
|
+
msprobe/pytorch/doc/img/api_precision_compare_details.png,sha256=QkN8uldQ6j1Bvd4WxtucZXUMr--AoBUjSCJ01hTkpFw,25476
|
|
198
|
+
msprobe/pytorch/doc/img/api_precision_compare_result.png,sha256=Kp9bIK1rlw3zDyX4Oqw1CVPohTtJBig0RYK2iIhum9g,4538
|
|
199
|
+
msprobe/pytorch/doc/img/auto_analyze_log.png,sha256=3Jd9bl0BBrYxs5fFlcKYqeIjFbPlYegVmw4GGUe6s1o,65144
|
|
200
|
+
msprobe/pytorch/doc/img/compare_result_pkl.png,sha256=pMCd38zNjQ1LzcA_86DPlNA_jAfKJ0QYcSBDmzVA0Jw,36133
|
|
201
|
+
msprobe/pytorch/doc/img/compare_result_pkl_md5.png.png,sha256=ys9key_66mHsKST53SmGdzhYyA4dJtB2PVrGcqQkld0,20464
|
|
202
|
+
msprobe/pytorch/doc/img/cpu_info.png,sha256=8n9pjTDB8_Q8_i1mo4CMNqb2JF96UGTBCPWLgPo_XBU,33797
|
|
203
|
+
msprobe/pytorch/doc/img/module_compare.png,sha256=8LjiAcZwLK-Me6YrkpWaAfOKFycStSapWdLsqZyS8oo,56655
|
|
204
|
+
msprobe/pytorch/free_benchmark/__init__.py,sha256=pQ8Dd80wjz7ar20B2RonGpIHLxurzq88DRFAmuSIcC0,281
|
|
205
|
+
msprobe/pytorch/free_benchmark/main.py,sha256=qc3lKdDPAl7pMGdnyaXLCkHoDH6SJx5NV7ORtPZw0y0,4122
|
|
206
|
+
msprobe/pytorch/free_benchmark/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
|
+
msprobe/pytorch/free_benchmark/common/constant.py,sha256=SW52L4n7lk0Zd-B7tKZ13vG2ySTvvS19cSbn7WDZujQ,1999
|
|
208
|
+
msprobe/pytorch/free_benchmark/common/counter.py,sha256=pmE6hlrehrdz7kqRIon37ebTFVSGzbtXc8PbDIQlfZ0,2789
|
|
209
|
+
msprobe/pytorch/free_benchmark/common/enums.py,sha256=g1XQH_gVemG0HImKqXOifrnFuC13lB81cEMTYZgjJyA,682
|
|
210
|
+
msprobe/pytorch/free_benchmark/common/params.py,sha256=hbKi2_7zZYy8aIA244Ir0KdY8M3E3GNzxNrYO7wfWdE,4119
|
|
211
|
+
msprobe/pytorch/free_benchmark/common/utils.py,sha256=75B-YMroeOwp7CXWbYr1NrCUQv9tIQ0E9UVnjSYif-g,4094
|
|
212
|
+
msprobe/pytorch/free_benchmark/compare/grad_saver.py,sha256=VP1U3NVCbRJgA6LMn9IJ84M6j6BpwFvAq3bMy4ZHp3Q,7799
|
|
213
|
+
msprobe/pytorch/free_benchmark/compare/single_benchmark.py,sha256=j0913MVbsMeOF5fVAsPNZBIG_iZPCkuHd0LU2Jd9XW4,3969
|
|
214
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/base_layer.py,sha256=Z7_NRsXpeZ7Xkh_Dzzt30PkKrEPAcgKyGpwFtkdVTP0,328
|
|
216
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/layer_factory.py,sha256=yZT9jkKSpBXQRt7yAv0FV2J_7QPzgOhF8ShheoA7Vbs,1808
|
|
217
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/run_cpu.py,sha256=kjpRabYy_qY02B-YdAW1kwACjE3ia49_TqtRoUB0gBs,875
|
|
218
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/npu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
219
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/npu/add_noise.py,sha256=EHJcyIofzNcnri_kgGy3GeAA7qIHHnkD5jjgFoN1uR8,3566
|
|
220
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/npu/bit_noise.py,sha256=YPxcrddiWi0m0MKnuTd7ZrBPAVekLni9GBSraOGnSKc,4051
|
|
221
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/npu/change_value.py,sha256=Z4Ca0KqxUtaVtSx0V-3NokavtKEbm8V2s9YG5uPXFH8,2529
|
|
222
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/npu/improve_precision.py,sha256=5Tdt6UF5vg1PKLVZ_l4NAQoEX-w32F_DGyN8tj8YOb4,2786
|
|
223
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/npu/no_change.py,sha256=lex-82ZKfIOGCJE27D7_VQCfniTsLU2TmM0hId_1JpU,946
|
|
224
|
+
msprobe/pytorch/free_benchmark/perturbed_layers/npu/npu_base_layser.py,sha256=vy3CsTqHW_VowPFVwJaP7G9Va6Uk-t-8rAz7YrqQYBo,1602
|
|
225
|
+
msprobe/pytorch/free_benchmark/result_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
|
+
msprobe/pytorch/free_benchmark/result_handlers/base_handler.py,sha256=zNLTKkg1uecP20h2BHwMTOQmahOVha1gFFka7LjEf48,9582
|
|
227
|
+
msprobe/pytorch/free_benchmark/result_handlers/check_handler.py,sha256=xZJlSwS6PwSFuoZ6k0VX7DikHpZx8XUlP-INVXwvth4,1661
|
|
228
|
+
msprobe/pytorch/free_benchmark/result_handlers/fix_handler.py,sha256=rCZNdqVbEaTN7gLuX7BM6_lcSzA_GX_JUbWjVU0Se_A,880
|
|
229
|
+
msprobe/pytorch/free_benchmark/result_handlers/handler_factory.py,sha256=BNgjz00BH_bafc83NRMJGxPGt_PuhVwSUce1Q1CU1m8,1347
|
|
230
|
+
msprobe/pytorch/free_benchmark/result_handlers/preheat_handler.py,sha256=Y43fjf5YcBDJZ-lynTTe-jIflxA03fkdYVQcpAJPlUw,7352
|
|
231
|
+
msprobe/pytorch/functional/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
232
|
+
msprobe/pytorch/functional/data_processor.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
|
+
msprobe/pytorch/functional/dump_module.py,sha256=YvfzGXIkzAeSUXnZHQgKj15UbTCR31Zg6LfD-_KT0X8,1882
|
|
234
|
+
msprobe/pytorch/grad_probe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
235
|
+
msprobe/pytorch/grad_probe/grad_monitor.py,sha256=GJX719bGsioNuzrh42mGa9hP2EhmzJiinXeiwsXfMPc,4292
|
|
236
|
+
msprobe/pytorch/grad_probe/grad_stat_csv.py,sha256=x9F1_HFzM4ncQNab2h9gObDDnmr52_nC7YFH4dKlw9k,4173
|
|
237
|
+
msprobe/pytorch/hook_module/__init__.py,sha256=Pi9uPQOVMzTeHXDUyptqZDFXIlq-wV2KrrLJ8KwrIlg,43
|
|
238
|
+
msprobe/pytorch/hook_module/api_registry.py,sha256=p2v3jq1-MUpGsnFkxjv161LrtRXyhA6NNwVjUYjyRLE,8009
|
|
239
|
+
msprobe/pytorch/hook_module/hook_module.py,sha256=2ipr9cbeEcQBhDqChwMIgNXCjoC1RQ8Zda29-aIKvrI,5051
|
|
240
|
+
msprobe/pytorch/hook_module/support_wrap_ops.yaml,sha256=XLV2-05MfPlF_Ycnetxg12rJcWdvbJss1da7Rev1ekM,29693
|
|
241
|
+
msprobe/pytorch/hook_module/utils.py,sha256=LGf8Px4AzDLoUAIhYDeAiwic1qM0p-lxDE2LprDKyRQ,1115
|
|
242
|
+
msprobe/pytorch/hook_module/wrap_aten.py,sha256=2csOAQvyz6SgpiueWTru75I5O1U3_TRwhZXRMgcLvEc,3943
|
|
243
|
+
msprobe/pytorch/hook_module/wrap_distributed.py,sha256=1rDbMFpzSDq1pqHRKD4BprNYmgAXaXWbG2fH-V4Kq6s,2710
|
|
244
|
+
msprobe/pytorch/hook_module/wrap_functional.py,sha256=z3E2RBtVbeD1BI7WxwhI0Mrm8OR9WLQwpjwHrMdbzo4,4563
|
|
245
|
+
msprobe/pytorch/hook_module/wrap_npu_custom.py,sha256=Bz8jrriQ383_GscVnuKSWBp94wzhno-l-f-PUq-5Ikc,2798
|
|
246
|
+
msprobe/pytorch/hook_module/wrap_tensor.py,sha256=vU7hJc4r2Afi6UjihQaaqOTEkZEBv7SoypSBgdUwrz8,2203
|
|
247
|
+
msprobe/pytorch/hook_module/wrap_torch.py,sha256=pXjFEkIwmO8z65nDICoNUH3aZZdORSrf5nHAb37joaA,2748
|
|
248
|
+
msprobe/pytorch/hook_module/wrap_vf.py,sha256=jH-JgVJQmtpGjoPVfgWPvl2EmdFOYuepgeBQKbF8l1s,1938
|
|
249
|
+
msprobe/pytorch/online_dispatch/__init__.py,sha256=HnGEYgpGVhyJMGNcy7oK2V4mBr71q6SG2vS9Tp3EfX0,754
|
|
250
|
+
msprobe/pytorch/online_dispatch/compare.py,sha256=tqY1YshIRH1aPLKfs_ZSt-xIdAO60LVszXWXF4NSLZY,10786
|
|
251
|
+
msprobe/pytorch/online_dispatch/dispatch.py,sha256=duYfsMabw4JeRFvikKOCo9NwdynvJg8gVsWzekqL0fo,12174
|
|
252
|
+
msprobe/pytorch/online_dispatch/dump_compare.py,sha256=JsYgv3qxBpb6mlYFhXAhziSqJICFlC8BaPJwOz_bJlI,6029
|
|
253
|
+
msprobe/pytorch/online_dispatch/single_compare.py,sha256=Y1XT7bj_Fvan9HI7hZdqFWsxQLpPUIezPOkCAshowXQ,17105
|
|
254
|
+
msprobe/pytorch/online_dispatch/torch_ops_config.yaml,sha256=XdEMUpRWWL5ZSYaBXDFwPEU23jwvx3lKQ2rmjOJv0ZI,789
|
|
255
|
+
msprobe/pytorch/online_dispatch/utils.py,sha256=Dc_jsd56b--hOaxP0IUKsk4v_jCSJSLWSCd52_NGWKQ,4847
|
|
256
|
+
msprobe/pytorch/parse_tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
|
+
msprobe/pytorch/parse_tool/cli.py,sha256=X19IPnFxfU2aIcNDs3rWwmwLV8-wj4W51DQh_1gGWZE,1129
|
|
258
|
+
msprobe/pytorch/parse_tool/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
|
+
msprobe/pytorch/parse_tool/lib/compare.py,sha256=HcSAP0H9Zkml-vub8EwldiPngiKANTNNcWYd-6giPRw,14126
|
|
260
|
+
msprobe/pytorch/parse_tool/lib/config.py,sha256=lDsngdwJcShTWFVgMZyLgGS4IVS5B-1ygnUZteciuPU,2044
|
|
261
|
+
msprobe/pytorch/parse_tool/lib/file_desc.py,sha256=mbcHZiBNW567rla1N9wqjQpXuajIA5dezsapzAc_FwE,1178
|
|
262
|
+
msprobe/pytorch/parse_tool/lib/interactive_cli.py,sha256=JHDJjtmsavUTahDMgzUVNWOEcKTMPCnaw66zQD4J-cQ,3780
|
|
263
|
+
msprobe/pytorch/parse_tool/lib/parse_exception.py,sha256=TPAEi6j0YkHV90-N3bcn5J-KQ3IJXwnL18iCmWPyzCY,1817
|
|
264
|
+
msprobe/pytorch/parse_tool/lib/parse_tool.py,sha256=5NhFrWd_lTYcyr_wrHLwiTI5MWjjOOx6IwGUvLwh55I,8125
|
|
265
|
+
msprobe/pytorch/parse_tool/lib/utils.py,sha256=Ru8Zi07EjBGFKKGIyn3R6yE2SCvbiTPYzK4FfyjRN-M,12665
|
|
266
|
+
msprobe/pytorch/parse_tool/lib/visualization.py,sha256=6DRt2S_ghaWXPOF10z-1YFtq1CxsCckloaLmdaczIMg,4457
|
|
267
|
+
mindstudio_probe-1.0.3.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
268
|
+
mindstudio_probe-1.0.3.dist-info/METADATA,sha256=XRn9JOBen3g0_1rPTIJWWbO-93z7XSnXYBWNgiqMh4M,1309
|
|
269
|
+
mindstudio_probe-1.0.3.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
270
|
+
mindstudio_probe-1.0.3.dist-info/entry_points.txt,sha256=4ob3a9L018EBZFdlfgMW1lbgeIOhc4F-HCR8gBksaCQ,49
|
|
271
|
+
mindstudio_probe-1.0.3.dist-info/top_level.txt,sha256=LxFEFqelENSyWmRtocCiEUF04IE8aZvwTl7ADB598Tk,8
|
|
272
|
+
mindstudio_probe-1.0.3.dist-info/RECORD,,
|
msprobe/README.md
CHANGED
|
@@ -10,13 +10,23 @@ MindStudio精度调试工具(MindStudio Probe),简称msprobe,是MindStud
|
|
|
10
10
|
```shell
|
|
11
11
|
pip install mindstudio-probe
|
|
12
12
|
```
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
使用`pip install mindstudio-probe==版本号`可安装指定版本的包。
|
|
14
|
+
|
|
15
|
+
pip命令会自动安装最新的包及其配套依赖。
|
|
16
|
+
|
|
17
|
+
提示如下信息则表示安装成功。
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
Successfully installed mindstudio_probe-{version}
|
|
21
|
+
```
|
|
17
22
|
|
|
18
23
|
### 下载whl包安装
|
|
19
|
-
1. 使用pip
|
|
24
|
+
1. 使用pip命令安装依赖:
|
|
25
|
+
|
|
26
|
+
1. 根据实际环境安装torch或mindspore
|
|
27
|
+
|
|
28
|
+
2. 安装numpy、openpyxl、pandas、PyYAML、rich、tqdm、einops、matplotlib、pyOpenSSL、twisted
|
|
29
|
+
|
|
20
30
|
|
|
21
31
|
若环境中已安装部分依赖,不需要重复安装。
|
|
22
32
|
|
|
@@ -24,12 +34,14 @@ MindStudio精度调试工具(MindStudio Probe),简称msprobe,是MindStud
|
|
|
24
34
|
|
|
25
35
|
请通过下表链接下载工具whl包。
|
|
26
36
|
|
|
27
|
-
| 版本 | 发布日期 | 支持PyTorch版本 | 下载链接 | 校验码 |
|
|
28
|
-
| ----- | ---------- |
|
|
29
|
-
| 1.0
|
|
30
|
-
|
|
|
31
|
-
|
|
|
32
|
-
| 0.0.
|
|
37
|
+
| 版本 | 发布日期 | 支持PyTorch版本 | 支持MindSpore版本 | 下载链接 | 校验码 |
|
|
38
|
+
| ----- | ---------- | ---------------- | ----------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
|
|
39
|
+
| 1.0.2 | 2024-08-09 | 1.11/2.0/2.1/2.2 | 2.3.1 | [mindstudio_probe-1.0.2-py3-none-any.whl](https://ptdbg.obs.myhuaweicloud.com/msprobe/1.0/mindstudio_probe-1.0.2-py3-none-any.whl) | e4a980e5d98c426ce5ce9842520d9bc031d3b3de621c74b3d59414cc6e238e0e |
|
|
40
|
+
| 1.0.1 | 2024-07-25 | 2.0/2.1/2.2 | 2.3.1 | [mindstudio_probe-1.0.1-py3-none-any.whl](https://ptdbg.obs.myhuaweicloud.com/msprobe/1.0/mindstudio_probe-1.0.1-py3-none-any.whl) | b699e224e4d4e3bcf9412c54fa858a1ee370f0d7a2bc69cb3f1273ac14a6dc82 |
|
|
41
|
+
| 1.0 | 2024-07-09 | 2.0/2.1/2.2 | 2.3.0 | [ascend_training_accuracy_tools-1.0-py3-none-any.whl](https://ptdbg.obs.myhuaweicloud.com/att/1.0/ascend_training_accuracy_tools-1.0-py3-none-any.whl) | 5016dfe886c5d340ec6f60a959673355855f313c91f100680da814efb49f8e81 |
|
|
42
|
+
| 0.0.3 | 2024-06-11 | 2.0/2.1/2.2 | 2.3.0 | [ascend_training_accuracy_tools-0.0.3-py3-none-any.whl](https://ptdbg.obs.myhuaweicloud.com/att/0.0/ascend_training_accuracy_tools-0.0.3-py3-none-any.whl) | f46d9714704859e2d67861a65bbb3c76b0a250cf6e238b978b5b959ab1fe125a |
|
|
43
|
+
| 0.0.2 | 2024-05-23 | 2.0/2.1/2.2 | 2.3.0 | [ascend_training_accuracy_tools-0.0.2-py3-none-any.whl](https://ptdbg.obs.myhuaweicloud.com/att/0.0/ascend_training_accuracy_tools-0.0.2-py3-none-any.whl) | 2e35809bde559e9c4d2f16a02ccde779ed9e436bb65fded0b7ebaf6ac2c88d93 |
|
|
44
|
+
| 0.0.1 | 2024-03-15 | 2.0/2.1 | - | [ascend_training_accuracy_tools-0.0.1-py3-none-any.whl](https://ptdbg.obs.myhuaweicloud.com/att/0.0/ascend_training_accuracy_tools-0.0.1-py3-none-any.whl) | 5801510d4e827e4859bc9a5aca021e4d30c2ea42d60a4c8ad0c2baab1b7782c9 |
|
|
33
45
|
|
|
34
46
|
3. whl包校验。
|
|
35
47
|
|
|
@@ -85,13 +97,46 @@ MindStudio精度调试工具(MindStudio Probe),简称msprobe,是MindStud
|
|
|
85
97
|
3. 安装msprobe
|
|
86
98
|
|
|
87
99
|
```shell
|
|
88
|
-
python setup.py
|
|
100
|
+
python setup.py bdist_wheel
|
|
101
|
+
cd dist
|
|
102
|
+
pip install mindstudio_probe*.whl
|
|
89
103
|
```
|
|
90
104
|
提示出现如下信息则表示源码安装成功。
|
|
91
105
|
```shell
|
|
92
|
-
|
|
106
|
+
Successfully installed ... mindstudio_probe-{version} ...
|
|
93
107
|
```
|
|
94
108
|
|
|
109
|
+
### 查看msprobe工具信息
|
|
110
|
+
|
|
111
|
+
执行如下命令查看msprobe工具信息。
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
pip show mindstudio-probe
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
输出结果如下示例:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
Name: mindstudio-probe
|
|
121
|
+
Version: 1.0
|
|
122
|
+
Summary: This is a pytorch precision comparison tools
|
|
123
|
+
Home-page:
|
|
124
|
+
Author:
|
|
125
|
+
Author-email:
|
|
126
|
+
License:
|
|
127
|
+
Location: /home/xx/anaconda3/envs/pt21py38/lib/python3.8/site-packages
|
|
128
|
+
Requires: numpy, openpyxl, pandas, pyyaml, rich, tqdm, wheel
|
|
129
|
+
Required-by:
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
关键字段含义:
|
|
133
|
+
|
|
134
|
+
- Name:工具名称。
|
|
135
|
+
- Version:工具版本号。
|
|
136
|
+
- Summary:工具概述。
|
|
137
|
+
- Location:工具安装路径。
|
|
138
|
+
- Requires:工具依赖。
|
|
139
|
+
|
|
95
140
|
## 工具使用
|
|
96
141
|
|
|
97
142
|
安装msprobe工具后,可以按照如下思路选择合适的子工具进行精度调试:
|
|
@@ -120,9 +165,9 @@ MindStudio精度调试工具(MindStudio Probe),简称msprobe,是MindStud
|
|
|
120
165
|
|
|
121
166
|
进行PyTorch整网API粒度的数据dump、精度比对和溢出检测,从而定位训练场景下的精度问题。
|
|
122
167
|
|
|
123
|
-
PyTorch场景:详见[PyTorch_精度比对工具](./pytorch/doc/
|
|
168
|
+
PyTorch场景:详见[PyTorch_精度比对工具](./pytorch/doc/ptdbg_ascend_compare.md)。
|
|
124
169
|
|
|
125
|
-
MindSpore
|
|
170
|
+
MindSpore场景:详见[MindSpore_精度比对工具](./mindspore/doc/compare.md)。
|
|
126
171
|
|
|
127
172
|
5. 执行溢出解析。
|
|
128
173
|
|
|
@@ -140,6 +185,14 @@ MindStudio精度调试工具(MindStudio Probe),简称msprobe,是MindStud
|
|
|
140
185
|
|
|
141
186
|
MindSpore场景:暂不支持。
|
|
142
187
|
|
|
188
|
+
6. 执行梯度采集和比对。
|
|
189
|
+
|
|
190
|
+
用于采集梯度数据并进行梯度相似度比对。可以精准定位问题出现的step。
|
|
191
|
+
|
|
192
|
+
详见[梯度状态监测工具](./doc/grad_probe/grad_probe.md)。
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
143
196
|
上述流程中的工具均为msprobe工具的子工具,使用相同的命令行,格式如下:
|
|
144
197
|
|
|
145
198
|
精度预检工具
|
|
@@ -156,6 +209,12 @@ msprobe -f <framework> multi_run_ut [-h]
|
|
|
156
209
|
msprobe -f <framework> api_precision_compare [-h]
|
|
157
210
|
```
|
|
158
211
|
|
|
212
|
+
精度比对工具
|
|
213
|
+
|
|
214
|
+
```bash
|
|
215
|
+
msprobe -f <framework> compare [-h]
|
|
216
|
+
```
|
|
217
|
+
|
|
159
218
|
溢出解析工具
|
|
160
219
|
|
|
161
220
|
```bash
|
|
@@ -168,15 +227,11 @@ msprobe -f <framework> run_overflow_check [-h]
|
|
|
168
227
|
msprobe -f <framework> parse [-h]
|
|
169
228
|
```
|
|
170
229
|
|
|
171
|
-
| 参数 | 说明
|
|
172
|
-
| ---- |
|
|
173
|
-
| -f |
|
|
174
|
-
| -h | 帮助信息。
|
|
230
|
+
| 参数 | 说明 |
|
|
231
|
+
| ---- | ------------------------------------------------------------ |
|
|
232
|
+
| -f | 框架,请按所使用框架配置,当前支持配置为:pytorch、mindspore。 |
|
|
233
|
+
| -h | 帮助信息。 |
|
|
175
234
|
|
|
176
235
|
## 贡献
|
|
177
236
|
|
|
178
237
|
push代码前,请务必保证已经完成了基础功能测试和网络测试。
|
|
179
|
-
|
|
180
|
-
## Release Notes
|
|
181
|
-
|
|
182
|
-
Release Notes请参见[RELEASE](RELEASE.md)。
|
msprobe/__init__.py
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from msprobe.core.grad_probe.grad_compare import GradComparator
|