mindstudio-probe 1.0.3__py3-none-any.whl → 1.0.4__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.3.dist-info → mindstudio_probe-1.0.4.dist-info}/LICENSE +201 -201
- {mindstudio_probe-1.0.3.dist-info → mindstudio_probe-1.0.4.dist-info}/METADATA +36 -34
- mindstudio_probe-1.0.4.dist-info/RECORD +276 -0
- {mindstudio_probe-1.0.3.dist-info → mindstudio_probe-1.0.4.dist-info}/WHEEL +1 -1
- {mindstudio_probe-1.0.3.dist-info → mindstudio_probe-1.0.4.dist-info}/entry_points.txt +1 -0
- msprobe/README.md +101 -237
- msprobe/{config/config.json → config.json} +49 -49
- msprobe/core/advisor/advisor.py +124 -124
- msprobe/core/advisor/advisor_const.py +59 -59
- msprobe/core/advisor/advisor_result.py +58 -58
- msprobe/core/common/const.py +341 -318
- msprobe/core/common/exceptions.py +99 -99
- msprobe/core/common/{file_check.py → file_utils.py} +478 -283
- msprobe/core/common/log.py +76 -69
- msprobe/core/common/utils.py +385 -616
- msprobe/core/common_config.py +85 -71
- msprobe/core/compare/acc_compare.py +299 -298
- msprobe/core/compare/check.py +95 -95
- msprobe/core/compare/compare_cli.py +49 -49
- msprobe/core/compare/highlight.py +223 -222
- msprobe/core/compare/multiprocessing_compute.py +149 -149
- msprobe/core/compare/npy_compare.py +295 -295
- msprobe/core/compare/utils.py +430 -429
- msprobe/core/data_dump/data_collector.py +154 -144
- msprobe/core/data_dump/data_processor/base.py +314 -293
- msprobe/core/data_dump/data_processor/factory.py +59 -59
- msprobe/core/data_dump/data_processor/mindspore_processor.py +186 -198
- msprobe/core/data_dump/data_processor/pytorch_processor.py +366 -389
- msprobe/core/data_dump/json_writer.py +96 -116
- msprobe/core/data_dump/scope.py +178 -178
- msprobe/core/grad_probe/constant.py +70 -70
- msprobe/core/grad_probe/grad_compare.py +171 -175
- msprobe/core/grad_probe/utils.py +64 -52
- msprobe/docs/01.installation.md +89 -0
- msprobe/docs/02.config_introduction.md +165 -0
- msprobe/docs/03.config_examples.md +247 -0
- msprobe/docs/04.acl_config_examples.md +76 -0
- msprobe/docs/05.data_dump_PyTorch.md +198 -0
- msprobe/docs/06.data_dump_MindSpore.md +243 -0
- msprobe/docs/07.accuracy_checker_PyTorch.md +274 -0
- msprobe/docs/08.accuracy_checker_online_PyTorch.md +198 -0
- msprobe/docs/09.accuracy_checker_MindSpore.md +68 -0
- msprobe/docs/10.accuracy_compare_PyTorch.md +245 -0
- msprobe/docs/11.accuracy_compare_MindSpore.md +202 -0
- msprobe/docs/12.overflow_check_PyTorch.md +79 -0
- msprobe/docs/13.overflow_check_MindSpore.md +31 -0
- msprobe/{pytorch/doc/parse_tool.md → docs/14.data_parse_PyTorch.md} +283 -286
- msprobe/docs/15.free_benchmarking_PyTorch.md +164 -0
- msprobe/{doc/grad_probe/grad_probe.md → docs/17.grad_probe.md} +207 -207
- msprobe/docs/FAQ_PyTorch.md +177 -0
- msprobe/docs/S02.report_free_benchmarking_validation_performance_baseline.md +146 -0
- msprobe/docs/img/free_benchmark_framework.png +0 -0
- msprobe/mindspore/__init__.py +1 -1
- msprobe/mindspore/api_accuracy_checker/api_accuracy_checker.py +254 -245
- msprobe/mindspore/api_accuracy_checker/api_info.py +69 -69
- msprobe/mindspore/api_accuracy_checker/api_runner.py +155 -151
- msprobe/mindspore/api_accuracy_checker/base_compare_algorithm.py +196 -196
- msprobe/mindspore/api_accuracy_checker/cmd_parser.py +6 -0
- msprobe/mindspore/api_accuracy_checker/compute_element.py +238 -223
- msprobe/mindspore/api_accuracy_checker/main.py +8 -15
- msprobe/mindspore/api_accuracy_checker/type_mapping.py +113 -113
- msprobe/mindspore/api_accuracy_checker/utils.py +79 -62
- msprobe/mindspore/cell_processor.py +34 -34
- msprobe/mindspore/common/const.py +106 -87
- msprobe/mindspore/common/log.py +37 -37
- msprobe/mindspore/common/utils.py +81 -57
- msprobe/mindspore/compare/distributed_compare.py +75 -75
- msprobe/mindspore/compare/ms_compare.py +219 -117
- msprobe/mindspore/compare/ms_graph_compare.py +348 -317
- msprobe/mindspore/compare/ms_to_pt_api.yaml +399 -399
- msprobe/mindspore/debugger/debugger_config.py +66 -74
- msprobe/mindspore/debugger/precision_debugger.py +126 -107
- msprobe/mindspore/dump/dump_tool_factory.py +35 -35
- msprobe/mindspore/dump/hook_cell/api_registry.py +118 -104
- msprobe/mindspore/dump/hook_cell/hook_cell.py +55 -53
- msprobe/mindspore/dump/hook_cell/support_wrap_ops.yaml +922 -925
- msprobe/mindspore/dump/hook_cell/wrap_api.py +113 -0
- msprobe/mindspore/dump/jit_dump.py +72 -56
- msprobe/mindspore/dump/kernel_graph_dump.py +59 -60
- msprobe/mindspore/dump/kernel_kbyk_dump.py +64 -65
- msprobe/mindspore/free_benchmark/api_pynative_self_check.py +116 -116
- msprobe/mindspore/free_benchmark/common/config.py +12 -12
- msprobe/mindspore/free_benchmark/common/handler_params.py +17 -17
- msprobe/mindspore/free_benchmark/common/utils.py +71 -71
- msprobe/mindspore/free_benchmark/data/support_wrap_ops.yaml +842 -842
- msprobe/mindspore/free_benchmark/decorator/dec_forward.py +43 -42
- msprobe/mindspore/free_benchmark/decorator/decorator_factory.py +107 -107
- msprobe/mindspore/free_benchmark/handler/base_handler.py +90 -90
- msprobe/mindspore/free_benchmark/handler/check_handler.py +41 -41
- msprobe/mindspore/free_benchmark/handler/fix_handler.py +36 -36
- msprobe/mindspore/free_benchmark/handler/handler_factory.py +21 -21
- msprobe/mindspore/free_benchmark/perturbation/add_noise.py +67 -67
- msprobe/mindspore/free_benchmark/perturbation/base_perturbation.py +21 -21
- msprobe/mindspore/free_benchmark/perturbation/bit_noise.py +63 -63
- msprobe/mindspore/free_benchmark/perturbation/exchange_value.py +51 -0
- msprobe/mindspore/free_benchmark/perturbation/improve_precision.py +35 -34
- msprobe/mindspore/free_benchmark/perturbation/no_change.py +12 -12
- msprobe/mindspore/free_benchmark/perturbation/perturbation_factory.py +29 -27
- msprobe/mindspore/free_benchmark/self_check_tool_factory.py +33 -33
- msprobe/mindspore/grad_probe/global_context.py +90 -91
- msprobe/mindspore/grad_probe/grad_analyzer.py +231 -231
- msprobe/mindspore/grad_probe/grad_monitor.py +27 -27
- msprobe/mindspore/grad_probe/grad_stat_csv.py +131 -131
- msprobe/mindspore/grad_probe/hook.py +94 -92
- msprobe/mindspore/grad_probe/utils.py +29 -28
- msprobe/mindspore/ms_config.py +128 -126
- msprobe/mindspore/overflow_check/kernel_graph_overflow_check.py +44 -45
- msprobe/mindspore/overflow_check/overflow_check_tool_factory.py +34 -34
- msprobe/mindspore/runtime.py +4 -4
- msprobe/mindspore/service.py +378 -354
- msprobe/mindspore/task_handler_factory.py +24 -24
- msprobe/msprobe.py +105 -107
- msprobe/pytorch/__init__.py +3 -3
- msprobe/pytorch/api_accuracy_checker/common/config.py +53 -55
- msprobe/pytorch/api_accuracy_checker/common/utils.py +214 -165
- msprobe/pytorch/api_accuracy_checker/compare/algorithm.py +213 -213
- msprobe/pytorch/api_accuracy_checker/compare/api_precision_compare.py +606 -581
- msprobe/pytorch/api_accuracy_checker/compare/api_precision_standard.yaml +132 -132
- msprobe/pytorch/api_accuracy_checker/compare/api_precision_threshold.yaml +390 -390
- msprobe/pytorch/api_accuracy_checker/compare/compare.py +386 -381
- msprobe/pytorch/api_accuracy_checker/compare/compare_column.py +73 -73
- msprobe/pytorch/api_accuracy_checker/compare/compare_utils.py +245 -244
- msprobe/pytorch/api_accuracy_checker/config.yaml +10 -10
- msprobe/pytorch/api_accuracy_checker/run_ut/data_generate.py +335 -332
- msprobe/pytorch/api_accuracy_checker/run_ut/multi_run_ut.py +200 -199
- msprobe/pytorch/api_accuracy_checker/run_ut/run_overflow_check.py +133 -134
- msprobe/pytorch/api_accuracy_checker/run_ut/run_ut.py +592 -581
- msprobe/pytorch/api_accuracy_checker/run_ut/run_ut_utils.py +70 -74
- msprobe/pytorch/api_accuracy_checker/run_ut/torch_ut_setting.json +7 -4
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/attl.py +197 -202
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/client.py +325 -324
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/device_dispatch.py +204 -204
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/server.py +219 -218
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/ssl_config.py +10 -10
- msprobe/pytorch/bench_functions/__init__.py +15 -15
- msprobe/pytorch/bench_functions/apply_adam_w.py +28 -28
- msprobe/pytorch/bench_functions/confusion_transpose.py +19 -19
- msprobe/pytorch/bench_functions/fast_gelu.py +55 -55
- msprobe/pytorch/bench_functions/layer_norm_eval.py +6 -6
- msprobe/pytorch/bench_functions/linear.py +12 -12
- msprobe/pytorch/bench_functions/matmul_backward.py +48 -48
- msprobe/pytorch/bench_functions/npu_fusion_attention.py +509 -421
- msprobe/pytorch/bench_functions/rms_norm.py +15 -15
- msprobe/pytorch/bench_functions/rotary_mul.py +52 -52
- msprobe/pytorch/bench_functions/scaled_mask_softmax.py +26 -26
- msprobe/pytorch/bench_functions/swiglu.py +55 -55
- msprobe/pytorch/common/__init__.py +2 -2
- msprobe/pytorch/common/compare_script.template +14 -14
- msprobe/pytorch/common/log.py +20 -31
- msprobe/pytorch/common/parse_json.py +39 -39
- msprobe/pytorch/common/utils.py +305 -300
- msprobe/pytorch/compare/distributed_compare.py +66 -66
- msprobe/pytorch/compare/mapping.yaml +607 -607
- msprobe/pytorch/compare/match.py +34 -33
- msprobe/pytorch/compare/pt_compare.py +50 -40
- msprobe/pytorch/debugger/debugger_config.py +95 -95
- msprobe/pytorch/debugger/precision_debugger.py +125 -125
- msprobe/pytorch/free_benchmark/__init__.py +8 -8
- msprobe/pytorch/free_benchmark/common/constant.py +70 -70
- msprobe/pytorch/free_benchmark/common/counter.py +71 -71
- msprobe/pytorch/free_benchmark/common/enums.py +37 -37
- msprobe/pytorch/free_benchmark/common/params.py +129 -129
- msprobe/pytorch/free_benchmark/common/utils.py +102 -102
- msprobe/pytorch/free_benchmark/compare/grad_saver.py +179 -179
- msprobe/pytorch/free_benchmark/compare/single_benchmark.py +104 -104
- msprobe/pytorch/free_benchmark/main.py +105 -105
- msprobe/pytorch/free_benchmark/perturbed_layers/base_layer.py +13 -13
- msprobe/pytorch/free_benchmark/perturbed_layers/layer_factory.py +41 -41
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/add_noise.py +90 -90
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/bit_noise.py +104 -104
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/change_value.py +63 -63
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/improve_precision.py +68 -68
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/no_change.py +28 -28
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/npu_base_layser.py +45 -45
- msprobe/pytorch/free_benchmark/perturbed_layers/run_cpu.py +19 -19
- msprobe/pytorch/free_benchmark/result_handlers/base_handler.py +217 -217
- msprobe/pytorch/free_benchmark/result_handlers/check_handler.py +39 -39
- msprobe/pytorch/free_benchmark/result_handlers/fix_handler.py +23 -23
- msprobe/pytorch/free_benchmark/result_handlers/handler_factory.py +30 -30
- msprobe/pytorch/free_benchmark/result_handlers/preheat_handler.py +170 -170
- msprobe/pytorch/function_factory.py +76 -75
- msprobe/pytorch/functional/dump_module.py +39 -39
- msprobe/pytorch/grad_probe/grad_monitor.py +91 -90
- msprobe/pytorch/grad_probe/grad_stat_csv.py +128 -128
- msprobe/pytorch/hook_module/api_registry.py +161 -161
- msprobe/pytorch/hook_module/hook_module.py +120 -120
- msprobe/pytorch/hook_module/support_wrap_ops.yaml +1879 -1877
- msprobe/pytorch/hook_module/utils.py +30 -29
- msprobe/pytorch/hook_module/wrap_aten.py +110 -110
- msprobe/pytorch/hook_module/wrap_distributed.py +78 -78
- msprobe/pytorch/hook_module/wrap_functional.py +105 -105
- msprobe/pytorch/hook_module/wrap_npu_custom.py +93 -84
- msprobe/pytorch/hook_module/wrap_tensor.py +71 -71
- msprobe/pytorch/hook_module/wrap_torch.py +86 -86
- msprobe/pytorch/hook_module/wrap_vf.py +62 -62
- msprobe/pytorch/module_processer.py +138 -138
- msprobe/pytorch/online_dispatch/__init__.py +20 -20
- msprobe/pytorch/online_dispatch/compare.py +236 -236
- msprobe/pytorch/online_dispatch/dispatch.py +271 -271
- msprobe/pytorch/online_dispatch/dump_compare.py +155 -156
- msprobe/pytorch/online_dispatch/single_compare.py +391 -391
- msprobe/pytorch/online_dispatch/torch_ops_config.yaml +49 -49
- msprobe/pytorch/online_dispatch/utils.py +130 -146
- msprobe/pytorch/parse.py +4 -4
- msprobe/pytorch/parse_tool/cli.py +32 -32
- msprobe/pytorch/parse_tool/lib/compare.py +260 -271
- msprobe/pytorch/parse_tool/lib/config.py +52 -52
- msprobe/pytorch/parse_tool/lib/file_desc.py +31 -31
- msprobe/pytorch/parse_tool/lib/interactive_cli.py +102 -102
- msprobe/pytorch/parse_tool/lib/parse_exception.py +54 -54
- msprobe/pytorch/parse_tool/lib/parse_tool.py +158 -158
- msprobe/pytorch/parse_tool/lib/utils.py +316 -321
- msprobe/pytorch/parse_tool/lib/visualization.py +85 -91
- msprobe/pytorch/pt_config.py +188 -187
- msprobe/pytorch/service.py +246 -252
- mindstudio_probe-1.0.3.dist-info/RECORD +0 -272
- msprobe/config/README.md +0 -539
- msprobe/mindspore/doc/compare.md +0 -58
- msprobe/mindspore/doc/dump.md +0 -217
- msprobe/mindspore/dump/hook_cell/wrap_functional.py +0 -91
- msprobe/mindspore/dump/hook_cell/wrap_tensor.py +0 -63
- msprobe/pytorch/doc/FAQ.md +0 -193
- msprobe/pytorch/doc/api_accuracy_checker.md +0 -313
- msprobe/pytorch/doc/api_accuracy_checker_online.md +0 -187
- msprobe/pytorch/doc/dump.md +0 -260
- msprobe/pytorch/doc/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 -182
- msprobe/pytorch/doc/ptdbg_ascend_compare.md +0 -240
- msprobe/pytorch/doc/ptdbg_ascend_overview.md +0 -68
- msprobe/pytorch/doc/ptdbg_ascend_quickstart.md +0 -381
- msprobe/pytorch/doc/run_overflow_check.md +0 -25
- msprobe/pytorch/doc//321/205/320/254/320/270/321/207/342/225/221/342/224/220/321/207/342/226/223/342/225/233/321/205/342/225/221/320/266/321/206/320/277/320/244/321/205/320/277/342/225/243.md +0 -90
- 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 +0 -151
- {mindstudio_probe-1.0.3.dist-info → mindstudio_probe-1.0.4.dist-info}/top_level.txt +0 -0
- /msprobe/{pytorch/doc → docs}/img/BLOOM-7B_1.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/BLOOM-7B_2.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/BLOOM-7B_3.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/BLOOM-7B_4.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/GPT-3_1.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/GPT-3_2.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/GPT-3_3.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/GPT-3_4.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/GPT-3_5.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/GPT-3_6.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/GPT-3_7.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/GPT-3_8.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/YOLOV5S_1.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/YOLOV5S_2.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/accuracy_checking_details.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/accuracy_checking_result.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/api_precision_compare_details.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/api_precision_compare_result.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/auto_analyze_log.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/compare_result_pkl.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/compare_result_pkl_md5.png.png +0 -0
- /msprobe/{pytorch/doc → docs}/img/cpu_info.png +0 -0
- /msprobe/{config → docs}/img/free_benchmark.png +0 -0
- /msprobe/{doc/grad_probe/img/image-1.png → docs/img/grad_probe_image-1.png} +0 -0
- /msprobe/{doc/grad_probe/img/image-2.png → docs/img/grad_probe_image-2.png} +0 -0
- /msprobe/{doc/grad_probe/img/image-3.png → docs/img/grad_probe_image-3.png} +0 -0
- /msprobe/{doc/grad_probe/img/image-4.png → docs/img/grad_probe_image-4.png} +0 -0
- /msprobe/{doc/grad_probe/img/image.png → docs/img/grad_probe_image.png} +0 -0
- /msprobe/{pytorch/doc → docs}/img/module_compare.png +0 -0
|
@@ -1,272 +0,0 @@
|
|
|
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,,
|