mindstudio-probe 1.0.1__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.
Files changed (228) hide show
  1. mindstudio_probe-1.0.1.dist-info/LICENSE +201 -0
  2. mindstudio_probe-1.0.1.dist-info/METADATA +30 -0
  3. mindstudio_probe-1.0.1.dist-info/RECORD +228 -0
  4. mindstudio_probe-1.0.1.dist-info/WHEEL +5 -0
  5. mindstudio_probe-1.0.1.dist-info/entry_points.txt +2 -0
  6. mindstudio_probe-1.0.1.dist-info/top_level.txt +1 -0
  7. msprobe/README.md +182 -0
  8. msprobe/__init__.py +0 -0
  9. msprobe/config/README.md +397 -0
  10. msprobe/config/config.json +28 -0
  11. msprobe/config/img/free_benchmark.png +0 -0
  12. msprobe/core/common/const.py +241 -0
  13. msprobe/core/common/exceptions.py +88 -0
  14. msprobe/core/common/file_check.py +265 -0
  15. msprobe/core/common/log.py +55 -0
  16. msprobe/core/common/utils.py +516 -0
  17. msprobe/core/common_config.py +58 -0
  18. msprobe/core/data_dump/data_collector.py +140 -0
  19. msprobe/core/data_dump/data_processor/base.py +245 -0
  20. msprobe/core/data_dump/data_processor/factory.py +61 -0
  21. msprobe/core/data_dump/data_processor/pytorch_processor.py +346 -0
  22. msprobe/core/data_dump/json_writer.py +116 -0
  23. msprobe/core/data_dump/scope.py +178 -0
  24. msprobe/mindspore/__init__.py +1 -0
  25. msprobe/mindspore/debugger/__init__.py +0 -0
  26. msprobe/mindspore/debugger/debugger_config.py +51 -0
  27. msprobe/mindspore/debugger/precision_debugger.py +32 -0
  28. msprobe/mindspore/doc/dump.md +65 -0
  29. msprobe/mindspore/dump/__init__.py +0 -0
  30. msprobe/mindspore/dump/api_kbk_dump.py +55 -0
  31. msprobe/mindspore/dump/dump_tool_factory.py +38 -0
  32. msprobe/mindspore/dump/kernel_graph_dump.py +60 -0
  33. msprobe/mindspore/ms_config.py +78 -0
  34. msprobe/mindspore/overflow_check/__init__.py +0 -0
  35. msprobe/mindspore/overflow_check/kernel_graph_overflow_check.py +45 -0
  36. msprobe/mindspore/overflow_check/overflow_check_tool_factory.py +32 -0
  37. msprobe/mindspore/task_handler_factory.py +21 -0
  38. msprobe/msprobe.py +67 -0
  39. msprobe/pytorch/__init__.py +4 -0
  40. msprobe/pytorch/advisor/advisor.py +124 -0
  41. msprobe/pytorch/advisor/advisor_const.py +59 -0
  42. msprobe/pytorch/advisor/advisor_result.py +58 -0
  43. msprobe/pytorch/api_accuracy_checker/.keep +0 -0
  44. msprobe/pytorch/api_accuracy_checker/__init__.py +0 -0
  45. msprobe/pytorch/api_accuracy_checker/common/.keep +0 -0
  46. msprobe/pytorch/api_accuracy_checker/common/__init__.py +0 -0
  47. msprobe/pytorch/api_accuracy_checker/common/config.py +50 -0
  48. msprobe/pytorch/api_accuracy_checker/common/utils.py +224 -0
  49. msprobe/pytorch/api_accuracy_checker/compare/__init__.py +0 -0
  50. msprobe/pytorch/api_accuracy_checker/compare/algorithm.py +216 -0
  51. msprobe/pytorch/api_accuracy_checker/compare/api_precision_compare.py +545 -0
  52. msprobe/pytorch/api_accuracy_checker/compare/api_precision_standard.yaml +133 -0
  53. msprobe/pytorch/api_accuracy_checker/compare/api_precision_threshold.yaml +390 -0
  54. msprobe/pytorch/api_accuracy_checker/compare/compare.py +345 -0
  55. msprobe/pytorch/api_accuracy_checker/compare/compare_column.py +74 -0
  56. msprobe/pytorch/api_accuracy_checker/compare/compare_utils.py +249 -0
  57. msprobe/pytorch/api_accuracy_checker/config.yaml +4 -0
  58. msprobe/pytorch/api_accuracy_checker/run_ut/.keep +0 -0
  59. msprobe/pytorch/api_accuracy_checker/run_ut/__init__.py +0 -0
  60. msprobe/pytorch/api_accuracy_checker/run_ut/data_generate.py +328 -0
  61. msprobe/pytorch/api_accuracy_checker/run_ut/multi_run_ut.py +203 -0
  62. msprobe/pytorch/api_accuracy_checker/run_ut/run_overflow_check.py +127 -0
  63. msprobe/pytorch/api_accuracy_checker/run_ut/run_ut.py +493 -0
  64. msprobe/pytorch/api_accuracy_checker/run_ut/run_ut_utils.py +7 -0
  65. msprobe/pytorch/api_accuracy_checker/run_ut/torch_ut_setting.json +5 -0
  66. msprobe/pytorch/common/__init__.py +2 -0
  67. msprobe/pytorch/common/compare_script.template +14 -0
  68. msprobe/pytorch/common/log.py +32 -0
  69. msprobe/pytorch/common/parse_json.py +37 -0
  70. msprobe/pytorch/common/utils.py +224 -0
  71. msprobe/pytorch/compare/acc_compare.py +1024 -0
  72. msprobe/pytorch/compare/distributed_compare.py +111 -0
  73. msprobe/pytorch/compare/highlight.py +100 -0
  74. msprobe/pytorch/compare/mapping.yaml +607 -0
  75. msprobe/pytorch/compare/match.py +36 -0
  76. msprobe/pytorch/compare/npy_compare.py +244 -0
  77. msprobe/pytorch/debugger/__init__.py +0 -0
  78. msprobe/pytorch/debugger/debugger_config.py +86 -0
  79. msprobe/pytorch/debugger/precision_debugger.py +95 -0
  80. msprobe/pytorch/doc/FAQ.md +193 -0
  81. msprobe/pytorch/doc/api_accuracy_checker.md +269 -0
  82. msprobe/pytorch/doc/atat/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 +182 -0
  83. msprobe/pytorch/doc/dump.md +207 -0
  84. msprobe/pytorch/doc/img/BLOOM-7B_1.png +0 -0
  85. msprobe/pytorch/doc/img/BLOOM-7B_2.png +0 -0
  86. msprobe/pytorch/doc/img/BLOOM-7B_3.png +0 -0
  87. msprobe/pytorch/doc/img/BLOOM-7B_4.png +0 -0
  88. msprobe/pytorch/doc/img/GPT-3_1.png +0 -0
  89. msprobe/pytorch/doc/img/GPT-3_2.png +0 -0
  90. msprobe/pytorch/doc/img/GPT-3_3.png +0 -0
  91. msprobe/pytorch/doc/img/GPT-3_4.png +0 -0
  92. msprobe/pytorch/doc/img/GPT-3_5.png +0 -0
  93. msprobe/pytorch/doc/img/GPT-3_6.png +0 -0
  94. msprobe/pytorch/doc/img/GPT-3_7.png +0 -0
  95. msprobe/pytorch/doc/img/GPT-3_8.png +0 -0
  96. msprobe/pytorch/doc/img/YOLOV5S_1.png +0 -0
  97. msprobe/pytorch/doc/img/YOLOV5S_2.png +0 -0
  98. msprobe/pytorch/doc/img/accuracy_checking_details.png +0 -0
  99. msprobe/pytorch/doc/img/accuracy_checking_result.png +0 -0
  100. msprobe/pytorch/doc/img/api_precision_compare_details.png +0 -0
  101. msprobe/pytorch/doc/img/api_precision_compare_result.png +0 -0
  102. msprobe/pytorch/doc/img/auto_analyze_log.png +0 -0
  103. msprobe/pytorch/doc/img/compare_result_pkl.png +0 -0
  104. msprobe/pytorch/doc/img/compare_result_pkl_md5.png.png +0 -0
  105. msprobe/pytorch/doc/img/cpu_info.png +0 -0
  106. msprobe/pytorch/doc/img/module_compare.png +0 -0
  107. msprobe/pytorch/doc/parse_tool.md +286 -0
  108. msprobe/pytorch/doc/ptdbg_ascend_compare.md +176 -0
  109. msprobe/pytorch/doc/ptdbg_ascend_overview.md +68 -0
  110. msprobe/pytorch/doc/ptdbg_ascend_quickstart.md +381 -0
  111. msprobe/pytorch/doc/run_overflow_check.md +25 -0
  112. 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 +90 -0
  113. msprobe/pytorch/free_benchmark/__init__.py +8 -0
  114. msprobe/pytorch/free_benchmark/common/__init__.py +0 -0
  115. msprobe/pytorch/free_benchmark/common/constant.py +67 -0
  116. msprobe/pytorch/free_benchmark/common/counter.py +72 -0
  117. msprobe/pytorch/free_benchmark/common/enums.py +37 -0
  118. msprobe/pytorch/free_benchmark/common/params.py +129 -0
  119. msprobe/pytorch/free_benchmark/common/utils.py +98 -0
  120. msprobe/pytorch/free_benchmark/compare/grad_saver.py +183 -0
  121. msprobe/pytorch/free_benchmark/compare/single_benchmark.py +104 -0
  122. msprobe/pytorch/free_benchmark/main.py +102 -0
  123. msprobe/pytorch/free_benchmark/perturbed_layers/__init__.py +0 -0
  124. msprobe/pytorch/free_benchmark/perturbed_layers/base_layer.py +13 -0
  125. msprobe/pytorch/free_benchmark/perturbed_layers/layer_factory.py +41 -0
  126. msprobe/pytorch/free_benchmark/perturbed_layers/npu/__init__.py +0 -0
  127. msprobe/pytorch/free_benchmark/perturbed_layers/npu/add_noise.py +90 -0
  128. msprobe/pytorch/free_benchmark/perturbed_layers/npu/bit_noise.py +104 -0
  129. msprobe/pytorch/free_benchmark/perturbed_layers/npu/change_value.py +63 -0
  130. msprobe/pytorch/free_benchmark/perturbed_layers/npu/improve_precision.py +68 -0
  131. msprobe/pytorch/free_benchmark/perturbed_layers/npu/no_change.py +28 -0
  132. msprobe/pytorch/free_benchmark/perturbed_layers/npu/npu_base_layser.py +45 -0
  133. msprobe/pytorch/free_benchmark/perturbed_layers/run_cpu.py +19 -0
  134. msprobe/pytorch/free_benchmark/result_handlers/__init__.py +0 -0
  135. msprobe/pytorch/free_benchmark/result_handlers/base_handler.py +203 -0
  136. msprobe/pytorch/free_benchmark/result_handlers/check_handler.py +39 -0
  137. msprobe/pytorch/free_benchmark/result_handlers/fix_handler.py +24 -0
  138. msprobe/pytorch/free_benchmark/result_handlers/handler_factory.py +31 -0
  139. msprobe/pytorch/free_benchmark/result_handlers/preheat_handler.py +170 -0
  140. msprobe/pytorch/functional/__init__.py +0 -0
  141. msprobe/pytorch/functional/data_processor.py +0 -0
  142. msprobe/pytorch/functional/dump_module.py +39 -0
  143. msprobe/pytorch/hook_module/__init__.py +1 -0
  144. msprobe/pytorch/hook_module/api_registry.py +161 -0
  145. msprobe/pytorch/hook_module/hook_module.py +109 -0
  146. msprobe/pytorch/hook_module/support_wrap_ops.yaml +1876 -0
  147. msprobe/pytorch/hook_module/utils.py +29 -0
  148. msprobe/pytorch/hook_module/wrap_aten.py +100 -0
  149. msprobe/pytorch/hook_module/wrap_distributed.py +75 -0
  150. msprobe/pytorch/hook_module/wrap_functional.py +108 -0
  151. msprobe/pytorch/hook_module/wrap_npu_custom.py +73 -0
  152. msprobe/pytorch/hook_module/wrap_tensor.py +72 -0
  153. msprobe/pytorch/hook_module/wrap_torch.py +88 -0
  154. msprobe/pytorch/hook_module/wrap_vf.py +64 -0
  155. msprobe/pytorch/module_processer.py +98 -0
  156. msprobe/pytorch/online_dispatch/__init__.py +20 -0
  157. msprobe/pytorch/online_dispatch/compare.py +236 -0
  158. msprobe/pytorch/online_dispatch/dispatch.py +274 -0
  159. msprobe/pytorch/online_dispatch/dump_compare.py +186 -0
  160. msprobe/pytorch/online_dispatch/single_compare.py +391 -0
  161. msprobe/pytorch/online_dispatch/torch_ops_config.yaml +50 -0
  162. msprobe/pytorch/online_dispatch/utils.py +187 -0
  163. msprobe/pytorch/parse.py +4 -0
  164. msprobe/pytorch/parse_tool/__init__.py +0 -0
  165. msprobe/pytorch/parse_tool/cli.py +32 -0
  166. msprobe/pytorch/parse_tool/lib/__init__.py +0 -0
  167. msprobe/pytorch/parse_tool/lib/compare.py +259 -0
  168. msprobe/pytorch/parse_tool/lib/config.py +51 -0
  169. msprobe/pytorch/parse_tool/lib/file_desc.py +31 -0
  170. msprobe/pytorch/parse_tool/lib/interactive_cli.py +102 -0
  171. msprobe/pytorch/parse_tool/lib/parse_exception.py +54 -0
  172. msprobe/pytorch/parse_tool/lib/parse_tool.py +158 -0
  173. msprobe/pytorch/parse_tool/lib/utils.py +367 -0
  174. msprobe/pytorch/parse_tool/lib/visualization.py +90 -0
  175. msprobe/pytorch/pt_config.py +93 -0
  176. msprobe/pytorch/service.py +167 -0
  177. msprobe/test/core_ut/common/test_utils.py +345 -0
  178. msprobe/test/core_ut/data_dump/test_data_collector.py +47 -0
  179. msprobe/test/core_ut/data_dump/test_json_writer.py +183 -0
  180. msprobe/test/core_ut/data_dump/test_scope.py +151 -0
  181. msprobe/test/core_ut/test_common_config.py +152 -0
  182. msprobe/test/core_ut/test_file_check.py +218 -0
  183. msprobe/test/core_ut/test_log.py +109 -0
  184. msprobe/test/mindspore_ut/test_api_kbk_dump.py +51 -0
  185. msprobe/test/mindspore_ut/test_debugger_config.py +42 -0
  186. msprobe/test/mindspore_ut/test_dump_tool_factory.py +51 -0
  187. msprobe/test/mindspore_ut/test_kernel_graph_dump.py +66 -0
  188. msprobe/test/mindspore_ut/test_kernel_graph_overflow_check.py +63 -0
  189. msprobe/test/mindspore_ut/test_ms_config.py +69 -0
  190. msprobe/test/mindspore_ut/test_overflow_check_tool_factory.py +51 -0
  191. msprobe/test/mindspore_ut/test_precision_debugger.py +56 -0
  192. msprobe/test/mindspore_ut/test_task_handler_factory.py +58 -0
  193. msprobe/test/pytorch_ut/advisor/test_advisor.py +83 -0
  194. msprobe/test/pytorch_ut/api_accuracy_checker/common/test_common_utils.py +108 -0
  195. msprobe/test/pytorch_ut/api_accuracy_checker/common/test_config.py +39 -0
  196. msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_algorithm.py +112 -0
  197. msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_api_precision_compare.py +77 -0
  198. msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare.py +125 -0
  199. msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare_column.py +10 -0
  200. msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare_utils.py +43 -0
  201. msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/dump.json +179 -0
  202. msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/forward.json +63 -0
  203. msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_data_generate.py +99 -0
  204. msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_multi_run_ut.py +115 -0
  205. msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_run_ut.py +72 -0
  206. msprobe/test/pytorch_ut/compare/test_acc_compare.py +17 -0
  207. msprobe/test/pytorch_ut/free_benchmark/perturbed_layers/test_perturbed_layser.py +105 -0
  208. msprobe/test/pytorch_ut/free_benchmark/result_handlers/test_result_handler.py +121 -0
  209. msprobe/test/pytorch_ut/free_benchmark/test_main.py +101 -0
  210. msprobe/test/pytorch_ut/functional/test_dump_module.py +15 -0
  211. msprobe/test/pytorch_ut/hook_module/test_api_registry.py +130 -0
  212. msprobe/test/pytorch_ut/hook_module/test_hook_module.py +42 -0
  213. msprobe/test/pytorch_ut/hook_module/test_wrap_aten.py +65 -0
  214. msprobe/test/pytorch_ut/hook_module/test_wrap_distributed.py +35 -0
  215. msprobe/test/pytorch_ut/hook_module/test_wrap_functional.py +20 -0
  216. msprobe/test/pytorch_ut/hook_module/test_wrap_tensor.py +35 -0
  217. msprobe/test/pytorch_ut/hook_module/test_wrap_torch.py +43 -0
  218. msprobe/test/pytorch_ut/hook_module/test_wrap_vf.py +11 -0
  219. msprobe/test/pytorch_ut/test_pt_config.py +69 -0
  220. msprobe/test/pytorch_ut/test_service.py +59 -0
  221. msprobe/test/resources/advisor.txt +3 -0
  222. msprobe/test/resources/compare_result_20230703104808.csv +9 -0
  223. msprobe/test/resources/compare_result_without_accuracy.csv +9 -0
  224. msprobe/test/resources/config.yaml +3 -0
  225. msprobe/test/resources/npu_test.pkl +8 -0
  226. msprobe/test/run_test.sh +30 -0
  227. msprobe/test/run_ut.py +58 -0
  228. msprobe/test/test_module_processer.py +64 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.1
2
+ Name: mindstudio-probe
3
+ Version: 1.0.1
4
+ Summary: Pytorch Ascend Probe Utils
5
+ Home-page: https://gitee.com/ascend/mstt/tree/master/debug/accuracy_tools/msprobe
6
+ Author: Ascend Team
7
+ Author-email: pmail_mindstudio@huawei.com
8
+ License: Apache License 2.0
9
+ Keywords: pytorch msprobe ascend
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Intended Audience :: Education
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Scientific/Engineering
15
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Classifier: Topic :: Software Development
18
+ Classifier: Topic :: Software Development :: Libraries
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Python: >=3.6.2
21
+ License-File: LICENSE
22
+ Requires-Dist: wheel
23
+ Requires-Dist: numpy
24
+ Requires-Dist: pandas >=1.3.5
25
+ Requires-Dist: pyyaml
26
+ Requires-Dist: rich
27
+ Requires-Dist: tqdm
28
+ Requires-Dist: openpyxl
29
+
30
+ 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,228 @@
1
+ msprobe/README.md,sha256=HFau6Wr0qRwGXvG95igpYpLRkmfrLKThwrc2LCCL74E,6503
2
+ msprobe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ msprobe/msprobe.py,sha256=2Tv79QcikCCzQZf7uA8yz7a9M0XXPY2fCX2K13IdMmU,3167
4
+ msprobe/config/README.md,sha256=awh5xbaDuE18cTVta7P16vKVVtuGKJO8tRiOhRuqODs,26010
5
+ msprobe/config/config.json,sha256=LZXfkEWVUCIsxkyo4A67PR85MZfI8pDCoq-fDhHyFUY,628
6
+ msprobe/config/img/free_benchmark.png,sha256=TjEImRJHHyt0-0R1fFWdhx1y4Lx8PM3wYgrF2XInkS0,72372
7
+ msprobe/core/common_config.py,sha256=19gSFcDQoS5osVyNNgSzkJpswJhMo5iDeDQmdLTVcDc,3481
8
+ msprobe/core/common/const.py,sha256=IMd7hV2pAwJ9P2pFXStc-hSJOkPofzL-RsgWyEwGLio,7564
9
+ msprobe/core/common/exceptions.py,sha256=sMPJXMZIg0T5TZy6Z8BwOpQl4SF4XwO1yYAnKwdAs8M,2468
10
+ msprobe/core/common/file_check.py,sha256=on5Z2gc7xZLr7lml2f_qUr-QyPE0A4uegV3MQaPSQq0,10741
11
+ msprobe/core/common/log.py,sha256=I03xzUe1xif6HS-CCirh2t1WoW6KVUuHPOQN8wUhKLk,1493
12
+ msprobe/core/common/utils.py,sha256=tE1cPClkAw4k-LTdsUrGiBeEedjnahn6wkKI6Lx78X8,20409
13
+ msprobe/core/data_dump/data_collector.py,sha256=1_gNJLh9GLrslYE8tZzN_4zFFXn2JHKdUX91DLWbjXY,5982
14
+ msprobe/core/data_dump/json_writer.py,sha256=w9rs-WkmAxEJqnmyvxeySRI7iTHVMih2WQosZgQ_CNY,4811
15
+ msprobe/core/data_dump/scope.py,sha256=WwVC0VtWLU2jgsbOtd2cjf2tQlcX0SwfzrE6NAzX-5E,6199
16
+ msprobe/core/data_dump/data_processor/base.py,sha256=-qYikgYInTABj6DqtZyjDGV_lZLRQBBLW8su3wvtuaA,9757
17
+ msprobe/core/data_dump/data_processor/factory.py,sha256=0TymbcP9NXGdOVSNZGIOM2zg_araGr2sJVIJQxtfYUo,3389
18
+ msprobe/core/data_dump/data_processor/pytorch_processor.py,sha256=kc0jC03nwMNNYO4H42HyNxjBvN-qNs0tPmy-kc0OkUI,15398
19
+ msprobe/mindspore/__init__.py,sha256=Ro5B5YJyFhyvzFBPTK4bKWfbRRCkQEiTrqPy7nk2cJ0,77
20
+ msprobe/mindspore/ms_config.py,sha256=nrW7iRb58apB0STf8FGMSmYFIHMUfqE2SH2vynl7E2I,2883
21
+ msprobe/mindspore/task_handler_factory.py,sha256=REcSFVzmeX8l3QI5NIn1LhMFjGLtaL0BdNODDEy8qHg,763
22
+ msprobe/mindspore/debugger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ msprobe/mindspore/debugger/debugger_config.py,sha256=lGypQ4p4UIyTd7OyreT6LpfwiekJgjaW_UN6PyO0Q70,1825
24
+ msprobe/mindspore/debugger/precision_debugger.py,sha256=yDrOxgJDWiIc6Zefq_SXeJrJofTfTUXdL-U2EYe8_ec,1167
25
+ msprobe/mindspore/doc/dump.md,sha256=1BBhWyAZ7UUZSaoe4O_YooWzLcS7l1bHccbJMn8pt_o,2302
26
+ msprobe/mindspore/dump/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ msprobe/mindspore/dump/api_kbk_dump.py,sha256=XIsG8anCUzQw1JfyUN3_1cw78XSriqEHMllbnMicQgs,2713
28
+ msprobe/mindspore/dump/dump_tool_factory.py,sha256=GpnAoF9OHdBLWbKPA8vlkGV_tNCbJiEnJgqtz6JZ4_E,1181
29
+ msprobe/mindspore/dump/kernel_graph_dump.py,sha256=7HRHdzDP2y0xxTQ4i9QuSa3ymHwEFzE4wVLLtNiXUeg,3163
30
+ msprobe/mindspore/overflow_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ msprobe/mindspore/overflow_check/kernel_graph_overflow_check.py,sha256=YQHU-UvXZ5lWrkNprEPi1b7OYcnq7vj21Nw2aV2T2xc,2300
32
+ msprobe/mindspore/overflow_check/overflow_check_tool_factory.py,sha256=M6sK9khgfgjTQQF7wZSf-Cn3F-YUZZz2kv850QkeMDo,961
33
+ msprobe/pytorch/__init__.py,sha256=YNSrFSS1lGHyJWTkr3fre3SjsC8n3HUK3m6xTfc5wBU,200
34
+ msprobe/pytorch/module_processer.py,sha256=Mzoy1KGkqWrvUSpoknbGai-eehnRhyHOE54c-RzpL-Q,3874
35
+ msprobe/pytorch/parse.py,sha256=zWe8UyLYBXd6j4-9hpgWml5ph1aTaIakxx5TVUuI_jo,91
36
+ msprobe/pytorch/pt_config.py,sha256=NwHV5nFq5EqCp3-XzwCE7vWuFDdteLLsB80FEXIjmMU,3963
37
+ msprobe/pytorch/service.py,sha256=P5xOCwFV1fAvadRNtefhxQAuBJRVJNBLKqtaboXsWUY,8562
38
+ msprobe/pytorch/advisor/advisor.py,sha256=goWI58-bvgBEcGx7dLAzsHtbpX_ENRA0lYybyjRxfKQ,5763
39
+ msprobe/pytorch/advisor/advisor_const.py,sha256=nNiet9GsBatvO2SWjJ8GLejZB3yzyMUYlStsTCihvi4,2701
40
+ msprobe/pytorch/advisor/advisor_result.py,sha256=mWoKUSVrJ8eckpLEyPmGZlDE44YPdzvvRuTcSPxgwEU,2502
41
+ msprobe/pytorch/api_accuracy_checker/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ msprobe/pytorch/api_accuracy_checker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ msprobe/pytorch/api_accuracy_checker/config.yaml,sha256=4OklgBY0asU_Ftx9MSIIXD8PD_OsNLpsCcb5av5UUiY,55
44
+ msprobe/pytorch/api_accuracy_checker/common/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ msprobe/pytorch/api_accuracy_checker/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ msprobe/pytorch/api_accuracy_checker/common/config.py,sha256=B7Aeb8y8OEC0akI5DsM7MA9lfiRi7OAhMiIN57z8Q68,2072
47
+ msprobe/pytorch/api_accuracy_checker/common/utils.py,sha256=Vyxh_6TTfTKQ31xPYaCfwdzAVQWHQkUqgncpVTHjer8,7748
48
+ msprobe/pytorch/api_accuracy_checker/compare/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ msprobe/pytorch/api_accuracy_checker/compare/algorithm.py,sha256=LbSke7utCv31-sVGA4xWZH5N0heEx13oyUB6xVq3NZw,8757
50
+ msprobe/pytorch/api_accuracy_checker/compare/api_precision_compare.py,sha256=PVHIuhbLTF2P20Puj2RXQLKqmuAYFgACrJubRDbyktw,28017
51
+ msprobe/pytorch/api_accuracy_checker/compare/api_precision_standard.yaml,sha256=amKXyTRW1mtC8zG4XHYPA0rS5uWVklRN8b62chF4tCE,2130
52
+ msprobe/pytorch/api_accuracy_checker/compare/api_precision_threshold.yaml,sha256=zz7xGrXohPNqZACWR2jpPGQcQyJE3smTIMpZVPEybSE,8502
53
+ msprobe/pytorch/api_accuracy_checker/compare/compare.py,sha256=2ztaHT_AoRty9mHiBuPET87JxXF8k4SbQaAhodDo7j0,20272
54
+ msprobe/pytorch/api_accuracy_checker/compare/compare_column.py,sha256=T4CR8wSXXPjcUEqnjjn8gPNDxTQor7h8bNqGeJdXOrg,3980
55
+ msprobe/pytorch/api_accuracy_checker/compare/compare_utils.py,sha256=YYHIzlJaXRN6yBhpoooflHDyerUt9IyAIyfqRvgsidc,9518
56
+ msprobe/pytorch/api_accuracy_checker/run_ut/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ msprobe/pytorch/api_accuracy_checker/run_ut/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ msprobe/pytorch/api_accuracy_checker/run_ut/data_generate.py,sha256=2AEUB4LUJ8fLfoRAugbL22BQ3vu9qfPyNeMpTJBeUUs,13671
59
+ msprobe/pytorch/api_accuracy_checker/run_ut/multi_run_ut.py,sha256=d1FeGi1JlU3h_cdCmvfT4siGsjcTisD-4hGDvjZ8LvA,8651
60
+ msprobe/pytorch/api_accuracy_checker/run_ut/run_overflow_check.py,sha256=tvIKKcPUNJLq1_bV2Axn2JjJmOrjsL22TWKQmvNJtiY,5339
61
+ msprobe/pytorch/api_accuracy_checker/run_ut/run_ut.py,sha256=_a2_AJqY-4R1YVN6PzGzObZMcSrJeeUwRi3RNGAcfDI,23844
62
+ msprobe/pytorch/api_accuracy_checker/run_ut/run_ut_utils.py,sha256=CG_jpOLka_gnhVcNdsqTSw3P_rf6xisKTdqVAX6FYf4,350
63
+ msprobe/pytorch/api_accuracy_checker/run_ut/torch_ut_setting.json,sha256=jrB_gpVBWbqFLBfYlxzqDCiIf_i6W-IYVlnlsVrXcbg,43
64
+ msprobe/pytorch/common/__init__.py,sha256=cWjNg380EvONkRTY_pKETlLJfG6WIt1D6EggWtEfVd0,87
65
+ msprobe/pytorch/common/compare_script.template,sha256=m3SZVmEsE_XepOgcc7SQP7tg7NISS0M6FXSEpDUdiKk,300
66
+ msprobe/pytorch/common/log.py,sha256=yQ6s4EV1JAJT6hEavBcui-QZFFnqMOwRWzyqUWnzj9k,1013
67
+ msprobe/pytorch/common/parse_json.py,sha256=YSi369MMhAvbGCEhRydhKVRLmU8zeMRc2bZjf5KpNUU,1477
68
+ msprobe/pytorch/common/utils.py,sha256=y98xzxcEuJk9B6zknBTM4YH47EsGlXKhmDxxwErS4y4,7427
69
+ msprobe/pytorch/compare/acc_compare.py,sha256=NJ3z5ahIoRGNU-krUOMygXoYl33qJ9cY_O9rvbo-fas,45705
70
+ msprobe/pytorch/compare/distributed_compare.py,sha256=leH-ALGBKB7yDfXd9hNm8LoqtBzB0Ac_5SRHcJa6fvQ,5261
71
+ msprobe/pytorch/compare/highlight.py,sha256=aaZiEXbsvOo6tIN2sw9jRY_ybrriakpZDQlUORVUsuc,4880
72
+ msprobe/pytorch/compare/mapping.yaml,sha256=oF-roDRl14MbqDKYDZ-qZstZzrWwaXvaTI88sKeOnBQ,12304
73
+ msprobe/pytorch/compare/match.py,sha256=HeHg-VvJdKFGymt1DPccV3uVc-DMBDBl9cczpn0dJqQ,1350
74
+ msprobe/pytorch/compare/npy_compare.py,sha256=jCnua6Y6vzgeSwiZEWWJLr6eZX2pgU-tzFZnnpWIq2o,10007
75
+ msprobe/pytorch/debugger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
+ msprobe/pytorch/debugger/debugger_config.py,sha256=z4fKNe6yJ3DgtykgowJHDTS6WDDzM39CzQV1v_qzGgo,4676
77
+ msprobe/pytorch/debugger/precision_debugger.py,sha256=b8DfApLOVbIyBAkPQy4Ec_AQgg1RFIwOz2iNp9yxxZ4,3401
78
+ msprobe/pytorch/doc/FAQ.md,sha256=pfK9JSer3Yrqit3JaXeF8xtkntSfWl5PC5kDQMkeGyA,9233
79
+ msprobe/pytorch/doc/api_accuracy_checker.md,sha256=eB4n9kSb9rty24uM5DmDLy_oikpqy9K-njTdn9CqwqQ,26572
80
+ msprobe/pytorch/doc/atat精度工具数据dump标准性能基线报告.md,sha256=fmGiKL7xGhgS9Y2C2tHTVYM8K3VlTiQ5KpDz-_7kVhw,7108
81
+ msprobe/pytorch/doc/dump.md,sha256=N8cK_X9zjVbZAs3ruo1Ge0TndTDczUkC_iMywVpQlAg,7959
82
+ msprobe/pytorch/doc/parse_tool.md,sha256=4VwXWOYGQKOrYS5lsYPT3lA6S2nQJnG3RHE_wshnM0Q,18987
83
+ msprobe/pytorch/doc/ptdbg_ascend_compare.md,sha256=hdIHPfLLGGuxY7R0NHAlldkH1ZdNkrnYXJ-FL84Ytyw,11290
84
+ msprobe/pytorch/doc/ptdbg_ascend_overview.md,sha256=alkLLssm9mub2unFu5nQ-NRyDGua9sPNdkjfXVw9Sb0,3152
85
+ msprobe/pytorch/doc/ptdbg_ascend_quickstart.md,sha256=2dK9NgGu1cbjWWiF_PBSy7yYUQ8qI7RXTAm8RREwXnI,15199
86
+ msprobe/pytorch/doc/run_overflow_check.md,sha256=z-inRk5Lu_vNaUd5hrn661bs05VQZHk_FG_fBF50T4E,1363
87
+ msprobe/pytorch/doc/在线精度比对.md,sha256=NxNBTP3eGyfTNsqdXF8hdL9T_1k_KISUBGZpH6Q50Qw,4493
88
+ msprobe/pytorch/doc/img/BLOOM-7B_1.png,sha256=Ul9XNHCX52PYufGaZ5mPfwTNJxwUO46KOKp7JxvDeAk,3534
89
+ msprobe/pytorch/doc/img/BLOOM-7B_2.png,sha256=HKefltWpBM2UkVHFy9rB238g6W5w-8CpsueW6Zf52HM,5251
90
+ msprobe/pytorch/doc/img/BLOOM-7B_3.png,sha256=gtL8dXIoqoJwk2Nd-KKChVM47IBdEY6KVYVRejnwKt0,5095
91
+ msprobe/pytorch/doc/img/BLOOM-7B_4.png,sha256=1yuQ2Dh7ak-VZt_kLprXVHtvfUxaxfsgrKdYzudHR94,4727
92
+ msprobe/pytorch/doc/img/GPT-3_1.png,sha256=EVm59Bvd3cX01RpZBqDyMVECjsiySTNy5RR9YyJoCTw,7898
93
+ msprobe/pytorch/doc/img/GPT-3_2.png,sha256=4wNkqagB28IJi808pnvUB72E03b2OeWdAASq5ggyl8A,6716
94
+ msprobe/pytorch/doc/img/GPT-3_3.png,sha256=6-fbdYtgcYU1xe9yOg6tAnKQ8SfZ6-x6rPVNSRxGP8I,8732
95
+ msprobe/pytorch/doc/img/GPT-3_4.png,sha256=QYpb7ZJaOAM_wJ5qdQQon0TKu7apVRL7ijovl18Uvzg,6609
96
+ msprobe/pytorch/doc/img/GPT-3_5.png,sha256=8eiCyqLmiaH6xwqpyTe3XTcesbGQUw8gApDI7ONBBkA,4676
97
+ msprobe/pytorch/doc/img/GPT-3_6.png,sha256=4IZvCeYHgK7gB87dgf6HgTaQ5uBK0s2sZXLblsDIVtQ,7658
98
+ msprobe/pytorch/doc/img/GPT-3_7.png,sha256=dil9jwfsYxtFupUu_aTCnKjuuEk3X_UMnqWJS0NzWCA,8139
99
+ msprobe/pytorch/doc/img/GPT-3_8.png,sha256=RNXIQgrCObpYtoKTkdTxr66AkndY_k2mGbksNgIqccQ,6084
100
+ msprobe/pytorch/doc/img/YOLOV5S_1.png,sha256=kCI017bFT7X3RrBPLMESTrnHZcRJYF-Ko_oJpjcsFWw,7019
101
+ msprobe/pytorch/doc/img/YOLOV5S_2.png,sha256=NH4vy35cGDl3qjlcUhDTWNpGEKcuboQ_YILxWQpvx40,5796
102
+ msprobe/pytorch/doc/img/accuracy_checking_details.png,sha256=dAedq5tbuzM3uEKPZzoanFSkzc0ep3HSW0r_3iTWMvE,39062
103
+ msprobe/pytorch/doc/img/accuracy_checking_result.png,sha256=6dVDcp3hl-zFIOgLigbRrMdgeBDiMfKWxupL8Hugvxo,6022
104
+ msprobe/pytorch/doc/img/api_precision_compare_details.png,sha256=QkN8uldQ6j1Bvd4WxtucZXUMr--AoBUjSCJ01hTkpFw,25476
105
+ msprobe/pytorch/doc/img/api_precision_compare_result.png,sha256=Kp9bIK1rlw3zDyX4Oqw1CVPohTtJBig0RYK2iIhum9g,4538
106
+ msprobe/pytorch/doc/img/auto_analyze_log.png,sha256=3Jd9bl0BBrYxs5fFlcKYqeIjFbPlYegVmw4GGUe6s1o,65144
107
+ msprobe/pytorch/doc/img/compare_result_pkl.png,sha256=pMCd38zNjQ1LzcA_86DPlNA_jAfKJ0QYcSBDmzVA0Jw,36133
108
+ msprobe/pytorch/doc/img/compare_result_pkl_md5.png.png,sha256=ys9key_66mHsKST53SmGdzhYyA4dJtB2PVrGcqQkld0,20464
109
+ msprobe/pytorch/doc/img/cpu_info.png,sha256=8n9pjTDB8_Q8_i1mo4CMNqb2JF96UGTBCPWLgPo_XBU,33797
110
+ msprobe/pytorch/doc/img/module_compare.png,sha256=8LjiAcZwLK-Me6YrkpWaAfOKFycStSapWdLsqZyS8oo,56655
111
+ msprobe/pytorch/free_benchmark/__init__.py,sha256=pQ8Dd80wjz7ar20B2RonGpIHLxurzq88DRFAmuSIcC0,281
112
+ msprobe/pytorch/free_benchmark/main.py,sha256=mJuaosz5-sSBrjuy8sC40J4dcvmwD1pw3FpmzI3DI5U,4094
113
+ msprobe/pytorch/free_benchmark/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
+ msprobe/pytorch/free_benchmark/common/constant.py,sha256=DiTCDzZO3G1YmnwZsX3E_9QtlLDM7gbyC_dhXg0Ut7Y,1931
115
+ msprobe/pytorch/free_benchmark/common/counter.py,sha256=pmE6hlrehrdz7kqRIon37ebTFVSGzbtXc8PbDIQlfZ0,2789
116
+ msprobe/pytorch/free_benchmark/common/enums.py,sha256=g1XQH_gVemG0HImKqXOifrnFuC13lB81cEMTYZgjJyA,682
117
+ msprobe/pytorch/free_benchmark/common/params.py,sha256=hbKi2_7zZYy8aIA244Ir0KdY8M3E3GNzxNrYO7wfWdE,4119
118
+ msprobe/pytorch/free_benchmark/common/utils.py,sha256=Bt7c4tCPn4EJ5emWyBpHlFwAkEjmwkn6XqUnmYNvIQg,3868
119
+ msprobe/pytorch/free_benchmark/compare/grad_saver.py,sha256=PFzYkrnim8THvuxZ2bHu-AD-6OJFP60nuF-LD2pyoCY,8172
120
+ msprobe/pytorch/free_benchmark/compare/single_benchmark.py,sha256=j0913MVbsMeOF5fVAsPNZBIG_iZPCkuHd0LU2Jd9XW4,3969
121
+ msprobe/pytorch/free_benchmark/perturbed_layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
+ msprobe/pytorch/free_benchmark/perturbed_layers/base_layer.py,sha256=Z7_NRsXpeZ7Xkh_Dzzt30PkKrEPAcgKyGpwFtkdVTP0,328
123
+ msprobe/pytorch/free_benchmark/perturbed_layers/layer_factory.py,sha256=yZT9jkKSpBXQRt7yAv0FV2J_7QPzgOhF8ShheoA7Vbs,1808
124
+ msprobe/pytorch/free_benchmark/perturbed_layers/run_cpu.py,sha256=3V---NvurHxZw5ywBRd1yn1uPw_V0Lb7ARi83JC8se0,888
125
+ msprobe/pytorch/free_benchmark/perturbed_layers/npu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
+ msprobe/pytorch/free_benchmark/perturbed_layers/npu/add_noise.py,sha256=xHYLRCC3VlL3x_U1IBXEH1MdjOUhNPadTC4FfZuN4m8,3579
127
+ msprobe/pytorch/free_benchmark/perturbed_layers/npu/bit_noise.py,sha256=y-A1FUxTS7iQdXrGnRpgm30xeJ3BvmvQJrOz0poIDYg,4064
128
+ msprobe/pytorch/free_benchmark/perturbed_layers/npu/change_value.py,sha256=2ZJ0EmpgtLNR5pJUNuqFK4NazuozosE9cspNh0K-UNc,2542
129
+ msprobe/pytorch/free_benchmark/perturbed_layers/npu/improve_precision.py,sha256=5y1xprwZfbt-2tTuAVMHjXyD3zHMgjg4X9TL4YBVMdY,2797
130
+ msprobe/pytorch/free_benchmark/perturbed_layers/npu/no_change.py,sha256=jtEZt268V2A_BgvbotjRf21GhGry1agOE7TYkyWTZZI,959
131
+ msprobe/pytorch/free_benchmark/perturbed_layers/npu/npu_base_layser.py,sha256=vy3CsTqHW_VowPFVwJaP7G9Va6Uk-t-8rAz7YrqQYBo,1602
132
+ msprobe/pytorch/free_benchmark/result_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ msprobe/pytorch/free_benchmark/result_handlers/base_handler.py,sha256=wIq22jkKmep3ZcP9OOyVoQD_DRbiiWFCmRRm_bqGNbY,7957
134
+ msprobe/pytorch/free_benchmark/result_handlers/check_handler.py,sha256=xZJlSwS6PwSFuoZ6k0VX7DikHpZx8XUlP-INVXwvth4,1661
135
+ msprobe/pytorch/free_benchmark/result_handlers/fix_handler.py,sha256=rCZNdqVbEaTN7gLuX7BM6_lcSzA_GX_JUbWjVU0Se_A,880
136
+ msprobe/pytorch/free_benchmark/result_handlers/handler_factory.py,sha256=RMmLkOW_K12VcuSKpXYwWtR-soMC7paHSgqFZKWXBbU,1367
137
+ msprobe/pytorch/free_benchmark/result_handlers/preheat_handler.py,sha256=Y43fjf5YcBDJZ-lynTTe-jIflxA03fkdYVQcpAJPlUw,7352
138
+ msprobe/pytorch/functional/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
+ msprobe/pytorch/functional/data_processor.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
+ msprobe/pytorch/functional/dump_module.py,sha256=oYEXXKnta6zjlvNGgIqImYPWDHwATFoR3vb5ZNixkHc,1869
141
+ msprobe/pytorch/hook_module/__init__.py,sha256=Pi9uPQOVMzTeHXDUyptqZDFXIlq-wV2KrrLJ8KwrIlg,43
142
+ msprobe/pytorch/hook_module/api_registry.py,sha256=p2v3jq1-MUpGsnFkxjv161LrtRXyhA6NNwVjUYjyRLE,8009
143
+ msprobe/pytorch/hook_module/hook_module.py,sha256=j_UKYDEMz65dtUIsiHWChySFsK7OM89ZKXi3nYlIUDU,4685
144
+ msprobe/pytorch/hook_module/support_wrap_ops.yaml,sha256=2o4L5E97bz7Qa1QUqykFGu6cCMT8yMQVtWatdK1zyP8,29677
145
+ msprobe/pytorch/hook_module/utils.py,sha256=zPAMENXVNPC1ZmTRZeAqXcI1AxC7sAOCSlwh0nvBRHU,1078
146
+ msprobe/pytorch/hook_module/wrap_aten.py,sha256=BVnbAPuEzXDYGj2c9G6NR_eWTcaVf0DtsjSQmodpdOU,3225
147
+ msprobe/pytorch/hook_module/wrap_distributed.py,sha256=K6I6-wcPLjqRD8J9eSDN6Nafm_3XjjtT9eg3WTlp_KA,2538
148
+ msprobe/pytorch/hook_module/wrap_functional.py,sha256=3JrKRjwsQx63vABOvT6ojhb2TsXaDcONfwh1IDtbqkM,4615
149
+ msprobe/pytorch/hook_module/wrap_npu_custom.py,sha256=Xi745q9dznLL3rspuT0RJRGTo4hSlNltf8ovFkZy0y0,2371
150
+ msprobe/pytorch/hook_module/wrap_tensor.py,sha256=Axo4VJ38WSk3zeGQHOYwdE2zHKTtdmDQaMOV54uD4TA,2247
151
+ msprobe/pytorch/hook_module/wrap_torch.py,sha256=oAZ3qUnxntgSxHV5NomCBTwaaSOJ-sam_dFDvn4whtw,2793
152
+ msprobe/pytorch/hook_module/wrap_vf.py,sha256=iTj_PPFlcuApIpwbSXA07h7sWml4eDo6xAXZdseh5GM,1980
153
+ msprobe/pytorch/online_dispatch/__init__.py,sha256=HnGEYgpGVhyJMGNcy7oK2V4mBr71q6SG2vS9Tp3EfX0,754
154
+ msprobe/pytorch/online_dispatch/compare.py,sha256=Hoq1qc1KUyt9OnckXEOoIUHcnvAdExGV3syZtm5f348,10731
155
+ msprobe/pytorch/online_dispatch/dispatch.py,sha256=LfKhOpIVsft37KqfubTxwk_s_a0ZJol6-8hEYG7Zcug,12281
156
+ msprobe/pytorch/online_dispatch/dump_compare.py,sha256=U4f4yIoZZv2FYGm9DToTY4krgJqUQKmbEP4fbVVDaFU,8149
157
+ msprobe/pytorch/online_dispatch/single_compare.py,sha256=7CH--duuXf_U_2XvmC6snKhZgqI4-G2QtyDqm3mxiSs,17122
158
+ msprobe/pytorch/online_dispatch/torch_ops_config.yaml,sha256=XdEMUpRWWL5ZSYaBXDFwPEU23jwvx3lKQ2rmjOJv0ZI,789
159
+ msprobe/pytorch/online_dispatch/utils.py,sha256=71ycbOrZGsvluyQfAXa1VFSjygEApYwZ_yrNVpP1vPU,5766
160
+ msprobe/pytorch/parse_tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
+ msprobe/pytorch/parse_tool/cli.py,sha256=X19IPnFxfU2aIcNDs3rWwmwLV8-wj4W51DQh_1gGWZE,1129
162
+ msprobe/pytorch/parse_tool/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
+ msprobe/pytorch/parse_tool/lib/compare.py,sha256=o_IcVm3CcXkubRETXuCZzcGjoEL4b7Iq8iyB6MplZaU,13517
164
+ msprobe/pytorch/parse_tool/lib/config.py,sha256=qeY-Fb7Pv7irm7K8YmlgRoPFAwOobfLEJolvdLg4jkk,2008
165
+ msprobe/pytorch/parse_tool/lib/file_desc.py,sha256=mbcHZiBNW567rla1N9wqjQpXuajIA5dezsapzAc_FwE,1178
166
+ msprobe/pytorch/parse_tool/lib/interactive_cli.py,sha256=JHDJjtmsavUTahDMgzUVNWOEcKTMPCnaw66zQD4J-cQ,3780
167
+ msprobe/pytorch/parse_tool/lib/parse_exception.py,sha256=TPAEi6j0YkHV90-N3bcn5J-KQ3IJXwnL18iCmWPyzCY,1817
168
+ msprobe/pytorch/parse_tool/lib/parse_tool.py,sha256=XuswOO6LRi3AttB0uyrDxRxNOe3h57UCsdSpYmMfqa8,8065
169
+ msprobe/pytorch/parse_tool/lib/utils.py,sha256=AE8Wcvj8sny_69C3uk9pdAsKEDCBx33_zY9S5XRGZUo,15255
170
+ msprobe/pytorch/parse_tool/lib/visualization.py,sha256=qE2ejv5hi6-QgFvc1fIGSvZ4BPAPLUlbqTn_dbZ4EgY,4402
171
+ msprobe/test/run_test.sh,sha256=dYPjBvrNnDSNk-vmmxko7jNVVWqihk58WMvvIKRYzbg,603
172
+ msprobe/test/run_ut.py,sha256=hFUeYcnQzMwrhcZPWWUJFLb-OoZRjLDT4PlUs3UkKHU,1650
173
+ msprobe/test/test_module_processer.py,sha256=cTLwr271ig56cXxNGTNr4dcD-g6B3G638U746DbI3xg,2284
174
+ msprobe/test/core_ut/test_common_config.py,sha256=ScZFfDT4ft7LD1YucyyDsvB-S-WQ1yXDN1NHlIOo2ks,7493
175
+ msprobe/test/core_ut/test_file_check.py,sha256=PNOf-7m9-REOiDnrU6yFy-q2ihjLpn3BrDdyeHzKBd0,11917
176
+ msprobe/test/core_ut/test_log.py,sha256=imPt9ef1-nb5L-OIKK0_3puFMdx0Cvk9R0UhtY271Zg,4285
177
+ msprobe/test/core_ut/common/test_utils.py,sha256=MkyZ6BT-fv76Coy1qMvckIpRwIvIdtlbAlHIgX3rMhc,16846
178
+ msprobe/test/core_ut/data_dump/test_data_collector.py,sha256=rvUpXIolW9aJoVeim1coc5Q7exMzZECrKzAaZtnWEpo,2403
179
+ msprobe/test/core_ut/data_dump/test_json_writer.py,sha256=_Dp-xiSc98yUay7ileTSEYEnJ2mfL8qIW7-8PA91uFY,6701
180
+ msprobe/test/core_ut/data_dump/test_scope.py,sha256=31kQqaf7WX9oO7lM7W15RmnSgcoGyM2-fMjhgY9ku7A,5516
181
+ msprobe/test/mindspore_ut/test_api_kbk_dump.py,sha256=_t-HgyydrxunlELh9BDKzTloPRf6zU-vL-DpBA3K5UA,2038
182
+ msprobe/test/mindspore_ut/test_debugger_config.py,sha256=SfxN4f-ADkmm6TXu8D8yx0JDWElJqdocpsWNXJEkau4,1727
183
+ msprobe/test/mindspore_ut/test_dump_tool_factory.py,sha256=Ff9oBzjVB8XsZUQ7VFZWWryDllGSWWO1iwTMjX1Du-g,1955
184
+ msprobe/test/mindspore_ut/test_kernel_graph_dump.py,sha256=2yiPeFfQGiG28wsa8rbUKqRh70DZ-OUr_6sOwjgoWeE,2779
185
+ msprobe/test/mindspore_ut/test_kernel_graph_overflow_check.py,sha256=l-r2WahlXAW74F_n1r1WDfmQ3wyMBlhiOWrZH3j_ccc,2733
186
+ msprobe/test/mindspore_ut/test_ms_config.py,sha256=D_j4CcXOqrxFY0WEnLhkZZNmrAiDZkdnSIZWF0anANw,2801
187
+ msprobe/test/mindspore_ut/test_overflow_check_tool_factory.py,sha256=W1qlU2trtkXCtyPwmWjoLvpecvHUtyRV95EFnvMVT5s,2037
188
+ msprobe/test/mindspore_ut/test_precision_debugger.py,sha256=Sc5GcKYZOspbjU8nv04-RYIhl9ralZsBvWHJMNsrT5M,2168
189
+ msprobe/test/mindspore_ut/test_task_handler_factory.py,sha256=cCsaH-vRWUthKAuHTAK70t6PvwY1jNOl_mKO79sNY44,2234
190
+ msprobe/test/pytorch_ut/test_pt_config.py,sha256=oWvLev5J8Rao3FM-IRuCzFppb1ooUlB3LKYMajKj5RU,2844
191
+ msprobe/test/pytorch_ut/test_service.py,sha256=iqMMA9zCDClzqjZTsLvK99w2_DIaKx_bbvThQ0msI-Q,2629
192
+ msprobe/test/pytorch_ut/advisor/test_advisor.py,sha256=Q0K7FBN0W51dmfxVjQx9XVZXUouY6NiEweQ-EwiES58,3833
193
+ msprobe/test/pytorch_ut/api_accuracy_checker/common/test_common_utils.py,sha256=YZxTvmzBtuLUZAUfKPlNSvZJkrsj10Qej-1rIxxrIKg,4832
194
+ msprobe/test/pytorch_ut/api_accuracy_checker/common/test_config.py,sha256=nCHLpuaNy4sANpoPM9NqzqXVF_QDONFBYlV2Pd6EHdU,1590
195
+ msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_algorithm.py,sha256=1yiDCkLJbqRPS2LrxUGwqbcXxMxL584omFB530BPnzU,5466
196
+ msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_api_precision_compare.py,sha256=VIw8VKuthPqMotpQIOS36EhttMiFZCcoMaY6bA_1H38,2592
197
+ msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare.py,sha256=leQ5MV-m26dxn_lRxnVN020pILfeLg1UyolXXQuH7LI,7138
198
+ msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare_column.py,sha256=KEkM1857BzcO3W7iwDz_NF3rkEb8J6JLgVwIJ1ygp7E,320
199
+ msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare_utils.py,sha256=JW4JZu_r_L4kJ8UuDbsHdda3RoqDLzyIlmqDbhlsbRM,1790
200
+ msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/dump.json,sha256=9vCbOYSvyU-2Q4LR3AlBUA16fRsy6fU2P7MQw1dg5jo,4064
201
+ msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/forward.json,sha256=BcPsyQtIdsOKxquCh8brTvt-vY55EoGCIUjrMegjYoI,1263
202
+ msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_data_generate.py,sha256=poTbNse4DBO4S6O3GnIAdYOraVm8_w_pWuGiMB4SxBw,4446
203
+ msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_multi_run_ut.py,sha256=4SX26ka6_hsEKDU-iAoJ-oDEcoAH9vL3WrMQ2dFdGC4,4862
204
+ msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_run_ut.py,sha256=I3K1RX23neJvF9CHg9fF_zXY9Di6GOha-g38DjpwDAs,3387
205
+ msprobe/test/pytorch_ut/compare/test_acc_compare.py,sha256=-OMGVmoGeHNdDa6JQVIWhlbUrOxTVjVChTWamiyPmS4,647
206
+ msprobe/test/pytorch_ut/free_benchmark/test_main.py,sha256=AdqJkD1dXVVyUkFdqHfbDSNDGQ-BLGNZfTinrvmwULo,3574
207
+ msprobe/test/pytorch_ut/free_benchmark/perturbed_layers/test_perturbed_layser.py,sha256=GTmoHMN3o5R6OTawl2qDjU6JZ_N286sBOBXagdJjdhA,4965
208
+ msprobe/test/pytorch_ut/free_benchmark/result_handlers/test_result_handler.py,sha256=_GUoO7fe7CpceNuGMTqk7kXFdpR51b7ntV8H9Qpfn94,5143
209
+ msprobe/test/pytorch_ut/functional/test_dump_module.py,sha256=iHeRcuEOKQadVxR0VKchOkP0HNNnLLaEpgn0htVe1_0,484
210
+ msprobe/test/pytorch_ut/hook_module/test_api_registry.py,sha256=yD7hrs4qaDqYzqBIBBbNqDsfx2BoNqhhR5dSWHlKUYc,4734
211
+ msprobe/test/pytorch_ut/hook_module/test_hook_module.py,sha256=jcpUyUVk8GdjE4ClTcNef3U4fS9HXvVCXP-g-BPcNhE,1290
212
+ msprobe/test/pytorch_ut/hook_module/test_wrap_aten.py,sha256=wLuYeEdDNdUSZBTL8p0ddzmJMm2WtaeAnWBB-CzkCBE,2410
213
+ msprobe/test/pytorch_ut/hook_module/test_wrap_distributed.py,sha256=whZyqwfO-KW2qrxy8PZLx5VsQ3MQ_nAeWeQ5VbhzKRs,1312
214
+ msprobe/test/pytorch_ut/hook_module/test_wrap_functional.py,sha256=LTIU0nvO1EOWJ0sEGUAVxCt84AvxDqWZG9MIBJQyYaI,755
215
+ msprobe/test/pytorch_ut/hook_module/test_wrap_tensor.py,sha256=w-OvDpk1lCM8yckz68Rxl7wwKu0UzcRAgqXc5u4mubU,1235
216
+ msprobe/test/pytorch_ut/hook_module/test_wrap_torch.py,sha256=w29AsWyAkkRS63EzvZaHbX0lUfATxwrqQMg8tuWtoiY,1470
217
+ msprobe/test/pytorch_ut/hook_module/test_wrap_vf.py,sha256=K53rNBcUWTW2maOtefGyYFk3WJF-gKJqqeOEYqBnUtU,285
218
+ msprobe/test/resources/advisor.txt,sha256=3ZDECnhfKXwljbs0gHFJ2NlUVMNmV8P9TL5u82cn5Ys,108
219
+ msprobe/test/resources/compare_result_20230703104808.csv,sha256=ZJ3_A0p738YXIpovJJcU3kjvnzPxHgsAfWHGAcUczgM,2128
220
+ msprobe/test/resources/compare_result_without_accuracy.csv,sha256=MvUYnZQUoBaiYfWtznEDtBhSzQro3UOty_mIuI_2Qbo,1437
221
+ msprobe/test/resources/config.yaml,sha256=HkvJmIeU18jKnDhN1zfI7l4Yvk0tnMmx55zyuQ6MXC0,52
222
+ msprobe/test/resources/npu_test.pkl,sha256=nE6ravO8IGdtHO5ErFcKiupS4tOUyJ8YHJcAkaqddbQ,1041
223
+ mindstudio_probe-1.0.1.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
224
+ mindstudio_probe-1.0.1.dist-info/METADATA,sha256=tAp8L9E-JHyZu0xmB1Z9xGhURTRhi-yiM8eyetas0XM,1209
225
+ mindstudio_probe-1.0.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
226
+ mindstudio_probe-1.0.1.dist-info/entry_points.txt,sha256=4ob3a9L018EBZFdlfgMW1lbgeIOhc4F-HCR8gBksaCQ,49
227
+ mindstudio_probe-1.0.1.dist-info/top_level.txt,sha256=LxFEFqelENSyWmRtocCiEUF04IE8aZvwTl7ADB598Tk,8
228
+ mindstudio_probe-1.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.41.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ msprobe = msprobe.msprobe:main
@@ -0,0 +1 @@
1
+ msprobe