mindstudio-probe 1.0.1__py3-none-any.whl → 1.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/METADATA +5 -1
- mindstudio_probe-1.0.3.dist-info/RECORD +272 -0
- msprobe/README.md +78 -23
- msprobe/__init__.py +1 -0
- msprobe/config/README.md +182 -40
- msprobe/config/config.json +22 -0
- msprobe/core/__init__.py +0 -0
- msprobe/{pytorch → core}/advisor/advisor.py +3 -3
- msprobe/{pytorch → core}/advisor/advisor_result.py +2 -2
- msprobe/core/common/const.py +82 -5
- msprobe/core/common/exceptions.py +30 -18
- msprobe/core/common/file_check.py +19 -1
- msprobe/core/common/log.py +15 -1
- msprobe/core/common/utils.py +130 -30
- msprobe/core/common_config.py +32 -19
- msprobe/core/compare/acc_compare.py +299 -0
- msprobe/core/compare/check.py +95 -0
- msprobe/core/compare/compare_cli.py +49 -0
- msprobe/core/compare/highlight.py +222 -0
- msprobe/core/compare/multiprocessing_compute.py +149 -0
- msprobe/{pytorch → core}/compare/npy_compare.py +55 -4
- msprobe/core/compare/utils.py +429 -0
- msprobe/core/data_dump/data_collector.py +39 -35
- msprobe/core/data_dump/data_processor/base.py +85 -37
- msprobe/core/data_dump/data_processor/factory.py +5 -7
- msprobe/core/data_dump/data_processor/mindspore_processor.py +198 -0
- msprobe/core/data_dump/data_processor/pytorch_processor.py +94 -51
- msprobe/core/data_dump/json_writer.py +11 -11
- msprobe/core/grad_probe/__init__.py +0 -0
- msprobe/core/grad_probe/constant.py +71 -0
- msprobe/core/grad_probe/grad_compare.py +175 -0
- msprobe/core/grad_probe/utils.py +52 -0
- msprobe/doc/grad_probe/grad_probe.md +207 -0
- msprobe/doc/grad_probe/img/image-1.png +0 -0
- msprobe/doc/grad_probe/img/image-2.png +0 -0
- msprobe/doc/grad_probe/img/image-3.png +0 -0
- msprobe/doc/grad_probe/img/image-4.png +0 -0
- msprobe/doc/grad_probe/img/image.png +0 -0
- msprobe/mindspore/api_accuracy_checker/__init__.py +0 -0
- msprobe/mindspore/api_accuracy_checker/api_accuracy_checker.py +246 -0
- msprobe/mindspore/api_accuracy_checker/api_info.py +69 -0
- msprobe/mindspore/api_accuracy_checker/api_runner.py +152 -0
- msprobe/mindspore/api_accuracy_checker/base_compare_algorithm.py +197 -0
- msprobe/mindspore/api_accuracy_checker/compute_element.py +224 -0
- msprobe/mindspore/api_accuracy_checker/main.py +16 -0
- msprobe/mindspore/api_accuracy_checker/type_mapping.py +114 -0
- msprobe/mindspore/api_accuracy_checker/utils.py +63 -0
- msprobe/mindspore/cell_processor.py +34 -0
- msprobe/mindspore/common/const.py +87 -0
- msprobe/mindspore/common/log.py +38 -0
- msprobe/mindspore/common/utils.py +57 -0
- msprobe/mindspore/compare/distributed_compare.py +75 -0
- msprobe/mindspore/compare/ms_compare.py +117 -0
- msprobe/mindspore/compare/ms_graph_compare.py +317 -0
- msprobe/mindspore/compare/ms_to_pt_api.yaml +399 -0
- msprobe/mindspore/debugger/debugger_config.py +38 -15
- msprobe/mindspore/debugger/precision_debugger.py +79 -4
- msprobe/mindspore/doc/compare.md +58 -0
- msprobe/mindspore/doc/dump.md +158 -6
- msprobe/mindspore/dump/dump_tool_factory.py +19 -22
- msprobe/mindspore/dump/hook_cell/api_registry.py +104 -0
- msprobe/mindspore/dump/hook_cell/hook_cell.py +53 -0
- msprobe/mindspore/dump/hook_cell/support_wrap_ops.yaml +925 -0
- msprobe/mindspore/dump/hook_cell/wrap_functional.py +91 -0
- msprobe/mindspore/dump/hook_cell/wrap_tensor.py +63 -0
- msprobe/mindspore/dump/jit_dump.py +56 -0
- msprobe/mindspore/dump/kernel_kbyk_dump.py +65 -0
- msprobe/mindspore/free_benchmark/__init__.py +0 -0
- msprobe/mindspore/free_benchmark/api_pynative_self_check.py +116 -0
- msprobe/mindspore/free_benchmark/common/__init__.py +0 -0
- msprobe/mindspore/free_benchmark/common/config.py +12 -0
- msprobe/mindspore/free_benchmark/common/handler_params.py +17 -0
- msprobe/mindspore/free_benchmark/common/utils.py +71 -0
- msprobe/mindspore/free_benchmark/data/support_wrap_ops.yaml +842 -0
- msprobe/mindspore/free_benchmark/decorator/__init__.py +0 -0
- msprobe/mindspore/free_benchmark/decorator/dec_forward.py +42 -0
- msprobe/mindspore/free_benchmark/decorator/decorator_factory.py +107 -0
- msprobe/mindspore/free_benchmark/handler/__init__.py +0 -0
- msprobe/mindspore/free_benchmark/handler/base_handler.py +90 -0
- msprobe/mindspore/free_benchmark/handler/check_handler.py +41 -0
- msprobe/mindspore/free_benchmark/handler/fix_handler.py +36 -0
- msprobe/mindspore/free_benchmark/handler/handler_factory.py +21 -0
- msprobe/mindspore/free_benchmark/perturbation/add_noise.py +67 -0
- msprobe/mindspore/free_benchmark/perturbation/base_perturbation.py +21 -0
- msprobe/mindspore/free_benchmark/perturbation/bit_noise.py +63 -0
- msprobe/mindspore/free_benchmark/perturbation/improve_precision.py +34 -0
- msprobe/mindspore/free_benchmark/perturbation/no_change.py +12 -0
- msprobe/mindspore/free_benchmark/perturbation/perturbation_factory.py +27 -0
- msprobe/mindspore/free_benchmark/self_check_tool_factory.py +33 -0
- msprobe/mindspore/grad_probe/__init__.py +0 -0
- msprobe/mindspore/grad_probe/global_context.py +91 -0
- msprobe/mindspore/grad_probe/grad_analyzer.py +231 -0
- msprobe/mindspore/grad_probe/grad_monitor.py +27 -0
- msprobe/mindspore/grad_probe/grad_stat_csv.py +132 -0
- msprobe/mindspore/grad_probe/hook.py +92 -0
- msprobe/mindspore/grad_probe/utils.py +29 -0
- msprobe/mindspore/ms_config.py +63 -15
- msprobe/mindspore/overflow_check/overflow_check_tool_factory.py +17 -15
- msprobe/mindspore/runtime.py +4 -0
- msprobe/mindspore/service.py +354 -0
- msprobe/mindspore/task_handler_factory.py +7 -4
- msprobe/msprobe.py +66 -26
- msprobe/pytorch/__init__.py +1 -1
- msprobe/pytorch/api_accuracy_checker/common/config.py +21 -16
- msprobe/pytorch/api_accuracy_checker/common/utils.py +1 -60
- msprobe/pytorch/api_accuracy_checker/compare/algorithm.py +2 -5
- msprobe/pytorch/api_accuracy_checker/compare/api_precision_compare.py +46 -10
- msprobe/pytorch/api_accuracy_checker/compare/compare.py +84 -48
- msprobe/pytorch/api_accuracy_checker/compare/compare_utils.py +8 -12
- msprobe/pytorch/api_accuracy_checker/config.yaml +7 -1
- msprobe/pytorch/api_accuracy_checker/run_ut/data_generate.py +15 -11
- msprobe/pytorch/api_accuracy_checker/run_ut/multi_run_ut.py +11 -15
- msprobe/pytorch/api_accuracy_checker/run_ut/run_overflow_check.py +16 -9
- msprobe/pytorch/api_accuracy_checker/run_ut/run_ut.py +193 -105
- msprobe/pytorch/api_accuracy_checker/run_ut/run_ut_utils.py +68 -1
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/__init__.py +0 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/attl.py +202 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/client.py +324 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/device_dispatch.py +204 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/server.py +218 -0
- msprobe/pytorch/api_accuracy_checker/tensor_transport_layer/ssl_config.py +10 -0
- msprobe/pytorch/bench_functions/__init__.py +15 -0
- msprobe/pytorch/bench_functions/apply_adam_w.py +28 -0
- msprobe/pytorch/bench_functions/confusion_transpose.py +19 -0
- msprobe/pytorch/bench_functions/fast_gelu.py +55 -0
- msprobe/pytorch/bench_functions/layer_norm_eval.py +6 -0
- msprobe/pytorch/bench_functions/linear.py +12 -0
- msprobe/pytorch/bench_functions/matmul_backward.py +48 -0
- msprobe/pytorch/bench_functions/npu_fusion_attention.py +421 -0
- msprobe/pytorch/bench_functions/rms_norm.py +15 -0
- msprobe/pytorch/bench_functions/rotary_mul.py +52 -0
- msprobe/pytorch/bench_functions/scaled_mask_softmax.py +26 -0
- msprobe/pytorch/bench_functions/swiglu.py +55 -0
- msprobe/pytorch/common/parse_json.py +3 -1
- msprobe/pytorch/common/utils.py +83 -7
- msprobe/pytorch/compare/distributed_compare.py +19 -64
- msprobe/pytorch/compare/match.py +3 -6
- msprobe/pytorch/compare/pt_compare.py +40 -0
- msprobe/pytorch/debugger/debugger_config.py +11 -2
- msprobe/pytorch/debugger/precision_debugger.py +34 -4
- msprobe/pytorch/doc/api_accuracy_checker.md +57 -13
- msprobe/pytorch/doc/api_accuracy_checker_online.md +187 -0
- msprobe/pytorch/doc/dump.md +73 -20
- msprobe/pytorch/doc/ptdbg_ascend_compare.md +75 -11
- msprobe/pytorch/doc/ptdbg_ascend_quickstart.md +3 -3
- msprobe/pytorch/doc/run_overflow_check.md +1 -1
- msprobe/pytorch/doc//321/206/320/247/320/260/321/206/320/260/320/227/321/206/320/255/320/226/321/205/342/225/226/320/265/321/205/320/225/342/225/226/321/205/320/254/342/225/221/321/206/320/251/320/277/321/211/320/272/320/234/321/210/320/277/320/221/321/205/320/242/320/234/321/206/320/220/320/267/321/210/320/223/342/225/234/321/205/320/257/342/225/221/321/207/342/225/221/342/224/220/321/206/320/232/320/265/321/205/320/241/320/232.md +151 -0
- msprobe/pytorch/free_benchmark/common/constant.py +3 -0
- msprobe/pytorch/free_benchmark/common/utils.py +4 -0
- msprobe/pytorch/free_benchmark/compare/grad_saver.py +22 -26
- msprobe/pytorch/free_benchmark/main.py +7 -4
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/add_noise.py +1 -1
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/bit_noise.py +1 -1
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/change_value.py +1 -1
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/improve_precision.py +3 -3
- msprobe/pytorch/free_benchmark/perturbed_layers/npu/no_change.py +1 -1
- msprobe/pytorch/free_benchmark/perturbed_layers/run_cpu.py +1 -1
- msprobe/pytorch/free_benchmark/result_handlers/base_handler.py +43 -29
- msprobe/pytorch/free_benchmark/result_handlers/handler_factory.py +0 -1
- msprobe/pytorch/function_factory.py +75 -0
- msprobe/pytorch/functional/dump_module.py +4 -4
- msprobe/pytorch/grad_probe/__init__.py +0 -0
- msprobe/pytorch/grad_probe/grad_monitor.py +90 -0
- msprobe/pytorch/grad_probe/grad_stat_csv.py +129 -0
- msprobe/pytorch/hook_module/hook_module.py +14 -3
- msprobe/pytorch/hook_module/support_wrap_ops.yaml +2 -1
- msprobe/pytorch/hook_module/utils.py +9 -9
- msprobe/pytorch/hook_module/wrap_aten.py +20 -10
- msprobe/pytorch/hook_module/wrap_distributed.py +10 -7
- msprobe/pytorch/hook_module/wrap_functional.py +4 -7
- msprobe/pytorch/hook_module/wrap_npu_custom.py +21 -10
- msprobe/pytorch/hook_module/wrap_tensor.py +5 -6
- msprobe/pytorch/hook_module/wrap_torch.py +5 -7
- msprobe/pytorch/hook_module/wrap_vf.py +6 -8
- msprobe/pytorch/module_processer.py +53 -13
- msprobe/pytorch/online_dispatch/compare.py +4 -4
- msprobe/pytorch/online_dispatch/dispatch.py +39 -41
- msprobe/pytorch/online_dispatch/dump_compare.py +17 -47
- msprobe/pytorch/online_dispatch/single_compare.py +5 -5
- msprobe/pytorch/online_dispatch/utils.py +2 -43
- msprobe/pytorch/parse_tool/lib/compare.py +31 -19
- msprobe/pytorch/parse_tool/lib/config.py +2 -1
- msprobe/pytorch/parse_tool/lib/parse_tool.py +4 -4
- msprobe/pytorch/parse_tool/lib/utils.py +34 -80
- msprobe/pytorch/parse_tool/lib/visualization.py +4 -3
- msprobe/pytorch/pt_config.py +100 -6
- msprobe/pytorch/service.py +104 -19
- mindstudio_probe-1.0.1.dist-info/RECORD +0 -228
- msprobe/mindspore/dump/api_kbk_dump.py +0 -55
- msprobe/pytorch/compare/acc_compare.py +0 -1024
- msprobe/pytorch/compare/highlight.py +0 -100
- msprobe/test/core_ut/common/test_utils.py +0 -345
- msprobe/test/core_ut/data_dump/test_data_collector.py +0 -47
- msprobe/test/core_ut/data_dump/test_json_writer.py +0 -183
- msprobe/test/core_ut/data_dump/test_scope.py +0 -151
- msprobe/test/core_ut/test_common_config.py +0 -152
- msprobe/test/core_ut/test_file_check.py +0 -218
- msprobe/test/core_ut/test_log.py +0 -109
- msprobe/test/mindspore_ut/test_api_kbk_dump.py +0 -51
- msprobe/test/mindspore_ut/test_debugger_config.py +0 -42
- msprobe/test/mindspore_ut/test_dump_tool_factory.py +0 -51
- msprobe/test/mindspore_ut/test_kernel_graph_dump.py +0 -66
- msprobe/test/mindspore_ut/test_kernel_graph_overflow_check.py +0 -63
- msprobe/test/mindspore_ut/test_ms_config.py +0 -69
- msprobe/test/mindspore_ut/test_overflow_check_tool_factory.py +0 -51
- msprobe/test/mindspore_ut/test_precision_debugger.py +0 -56
- msprobe/test/mindspore_ut/test_task_handler_factory.py +0 -58
- msprobe/test/pytorch_ut/advisor/test_advisor.py +0 -83
- msprobe/test/pytorch_ut/api_accuracy_checker/common/test_common_utils.py +0 -108
- msprobe/test/pytorch_ut/api_accuracy_checker/common/test_config.py +0 -39
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_algorithm.py +0 -112
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_api_precision_compare.py +0 -77
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare.py +0 -125
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare_column.py +0 -10
- msprobe/test/pytorch_ut/api_accuracy_checker/compare/test_compare_utils.py +0 -43
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/dump.json +0 -179
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/forward.json +0 -63
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_data_generate.py +0 -99
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_multi_run_ut.py +0 -115
- msprobe/test/pytorch_ut/api_accuracy_checker/run_ut/test_run_ut.py +0 -72
- msprobe/test/pytorch_ut/compare/test_acc_compare.py +0 -17
- msprobe/test/pytorch_ut/free_benchmark/perturbed_layers/test_perturbed_layser.py +0 -105
- msprobe/test/pytorch_ut/free_benchmark/result_handlers/test_result_handler.py +0 -121
- msprobe/test/pytorch_ut/free_benchmark/test_main.py +0 -101
- msprobe/test/pytorch_ut/functional/test_dump_module.py +0 -15
- msprobe/test/pytorch_ut/hook_module/test_api_registry.py +0 -130
- msprobe/test/pytorch_ut/hook_module/test_hook_module.py +0 -42
- msprobe/test/pytorch_ut/hook_module/test_wrap_aten.py +0 -65
- msprobe/test/pytorch_ut/hook_module/test_wrap_distributed.py +0 -35
- msprobe/test/pytorch_ut/hook_module/test_wrap_functional.py +0 -20
- msprobe/test/pytorch_ut/hook_module/test_wrap_tensor.py +0 -35
- msprobe/test/pytorch_ut/hook_module/test_wrap_torch.py +0 -43
- msprobe/test/pytorch_ut/hook_module/test_wrap_vf.py +0 -11
- msprobe/test/pytorch_ut/test_pt_config.py +0 -69
- msprobe/test/pytorch_ut/test_service.py +0 -59
- msprobe/test/resources/advisor.txt +0 -3
- msprobe/test/resources/compare_result_20230703104808.csv +0 -9
- msprobe/test/resources/compare_result_without_accuracy.csv +0 -9
- msprobe/test/resources/config.yaml +0 -3
- msprobe/test/resources/npu_test.pkl +0 -8
- msprobe/test/run_test.sh +0 -30
- msprobe/test/run_ut.py +0 -58
- msprobe/test/test_module_processer.py +0 -64
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/LICENSE +0 -0
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/WHEEL +0 -0
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/entry_points.txt +0 -0
- {mindstudio_probe-1.0.1.dist-info → mindstudio_probe-1.0.3.dist-info}/top_level.txt +0 -0
- /msprobe/{pytorch → core}/advisor/advisor_const.py +0 -0
- /msprobe/pytorch/doc/{atat → msprobe}/321/207/342/226/223/342/225/233/321/205/342/225/221/320/266/321/205/342/225/226/320/265/321/205/320/225/342/225/226/321/206/320/245/342/226/221/321/206/320/235/320/276dump/321/206/320/260/320/227/321/205/320/227/320/226/321/206/320/220/320/267/321/210/320/223/342/225/234/321/205/320/257/342/225/221/321/207/342/225/221/342/224/220/321/206/320/232/320/265/321/205/320/241/320/232.md" +0 -0
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import unittest
|
|
2
|
-
import os
|
|
3
|
-
from unittest.mock import patch
|
|
4
|
-
|
|
5
|
-
from msprobe.pytorch.api_accuracy_checker.common.config import Config
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class TestConfig(unittest.TestCase):
|
|
9
|
-
def setUp(self):
|
|
10
|
-
self.base_test_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))))
|
|
11
|
-
self.input_dir = os.path.join(self.base_test_dir, 'resources')
|
|
12
|
-
self.yaml_file = os.path.join(self.input_dir, "config.yaml")
|
|
13
|
-
self.cfg = Config(self.yaml_file)
|
|
14
|
-
|
|
15
|
-
def test_validate_valid_data(self):
|
|
16
|
-
for key, val in self.cfg.config.items():
|
|
17
|
-
validated_type = self.cfg.validate(key, val)
|
|
18
|
-
self.assertEqual(validated_type, val)
|
|
19
|
-
|
|
20
|
-
def test_validate_should_raise_when_invalid_type(self):
|
|
21
|
-
with self.assertRaises(ValueError):
|
|
22
|
-
self.cfg.validate('error_data_path', True)
|
|
23
|
-
|
|
24
|
-
def test_validate_should_raise_when_invalid_key(self):
|
|
25
|
-
with self.assertRaises(ValueError):
|
|
26
|
-
self.cfg.validate('invalid_key', 'mock_value')
|
|
27
|
-
|
|
28
|
-
def test_validate_precision(self):
|
|
29
|
-
self.assertEqual(self.cfg.validate('precision', 1), 1)
|
|
30
|
-
|
|
31
|
-
with self.assertRaises(ValueError):
|
|
32
|
-
self.cfg.validate('precision', -1)
|
|
33
|
-
|
|
34
|
-
def test_validate_white_list(self):
|
|
35
|
-
validate_white_list = ['conv1d', 'max_pool1d', 'dropout', '__add__']
|
|
36
|
-
self.assertEqual(self.cfg.validate('white_list', validate_white_list), validate_white_list)
|
|
37
|
-
|
|
38
|
-
with self.assertRaises(ValueError):
|
|
39
|
-
self.cfg.validate('white_list', ['invalid_api1', 'invalid_api2'])
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import unittest
|
|
2
|
-
|
|
3
|
-
import numpy as np
|
|
4
|
-
|
|
5
|
-
from msprobe.pytorch.api_accuracy_checker.compare import algorithm as alg
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class TestAlgorithmMethods(unittest.TestCase):
|
|
9
|
-
|
|
10
|
-
def setUp(self):
|
|
11
|
-
self.bench_data = np.array([1.0, 1.0, 9.0], dtype=np.float16)
|
|
12
|
-
self.device_data = np.array([5.0, 2.0, 1.0], dtype=np.float16)
|
|
13
|
-
self.abs_err = np.abs(self.device_data - self.bench_data)
|
|
14
|
-
self.rel_err_origin = np.abs(self.abs_err / self.bench_data)
|
|
15
|
-
eps = np.finfo(self.bench_data.dtype).eps
|
|
16
|
-
self.abs_bench = np.abs(self.bench_data)
|
|
17
|
-
self.abs_bench_with_eps = self.abs_bench + eps
|
|
18
|
-
self.rel_err = self.abs_err / self.abs_bench_with_eps
|
|
19
|
-
|
|
20
|
-
def test_cosine_sim(self):
|
|
21
|
-
cpu_output = np.array([1.0, 2.0, 3.0])
|
|
22
|
-
npu_output = np.array([1.0, 2.0, 3.0])
|
|
23
|
-
self.assertEqual(alg.cosine_sim(cpu_output, npu_output), (1.0, True, ''))
|
|
24
|
-
|
|
25
|
-
def test_get_rmse(self):
|
|
26
|
-
inf_nan_mask = [False, False, False]
|
|
27
|
-
self.assertAlmostEqual(alg.get_rmse(self.abs_err, inf_nan_mask), 5.196, 3)
|
|
28
|
-
|
|
29
|
-
def test_get_error_balance(self):
|
|
30
|
-
self.assertEqual(alg.get_error_balance(self.bench_data, self.device_data), 1 / 3)
|
|
31
|
-
|
|
32
|
-
def test_get_small_value_err_ratio(self):
|
|
33
|
-
small_value_mask = [True, True, True, False, True]
|
|
34
|
-
abs_err_greater_mask = [False, True, True, True, False]
|
|
35
|
-
self.assertEqual(alg.get_small_value_err_ratio(small_value_mask, abs_err_greater_mask), 0.5)
|
|
36
|
-
|
|
37
|
-
def get_rel_err(self):
|
|
38
|
-
eps = np.finfo(self.bench_data.dtype).eps
|
|
39
|
-
abs_bench = np.abs(self.bench_data)
|
|
40
|
-
abs_bench_with_eps = abs_bench + eps
|
|
41
|
-
small_value_mask = [False, False, False]
|
|
42
|
-
inf_nan_mask = [False, False, False]
|
|
43
|
-
rel_err = self.abs_err / abs_bench_with_eps
|
|
44
|
-
self.assertListEqual(list(alg.get_rel_err(self.abs_err, abs_bench_with_eps, small_value_mask, inf_nan_mask)),
|
|
45
|
-
list(rel_err))
|
|
46
|
-
|
|
47
|
-
def test_get_abs_err(self):
|
|
48
|
-
self.assertListEqual(list(alg.get_abs_err(self.bench_data, self.device_data)), [4.0, 1.0, 8.0])
|
|
49
|
-
|
|
50
|
-
def test_get_rel_err_origin(self):
|
|
51
|
-
self.assertListEqual(list(alg.get_rel_err_origin(self.abs_err, self.bench_data)), list(self.rel_err_origin))
|
|
52
|
-
|
|
53
|
-
def test_get_max_abs_err(self):
|
|
54
|
-
self.assertEqual(alg.get_max_abs_err(self.abs_err), (8.0, False))
|
|
55
|
-
|
|
56
|
-
def test_get_max_rel_err(self):
|
|
57
|
-
self.assertAlmostEqual(alg.get_max_rel_err(self.rel_err), 3.996, 3)
|
|
58
|
-
|
|
59
|
-
def test_get_mean_rel_err(self):
|
|
60
|
-
self.assertAlmostEqual(alg.get_mean_rel_err(self.rel_err), 1.961, 3)
|
|
61
|
-
|
|
62
|
-
def test_get_rel_err_ratio_thousandth(self):
|
|
63
|
-
b_value = np.array([1.0, 2.0, 3.0])
|
|
64
|
-
n_value = np.array([1.0, 2.0, 3.0])
|
|
65
|
-
abs_err = np.abs(b_value - n_value)
|
|
66
|
-
rel_err = alg.get_rel_err_origin(abs_err, b_value)
|
|
67
|
-
self.assertEqual(alg.get_rel_err_ratio(rel_err, 0.001), (1.0, True))
|
|
68
|
-
|
|
69
|
-
def test_get_rel_err_ratio_ten_thousandth(self):
|
|
70
|
-
b_value = np.array([1.0, 2.0, 3.0])
|
|
71
|
-
n_value = np.array([1.0, 2.0, 3.0])
|
|
72
|
-
abs_err = np.abs(b_value - n_value)
|
|
73
|
-
rel_err = alg.get_rel_err_origin(abs_err, b_value)
|
|
74
|
-
self.assertEqual(alg.get_rel_err_ratio(rel_err, 0.0001), (1.0, True))
|
|
75
|
-
|
|
76
|
-
def test_get_finite_and_infinite_mask(self):
|
|
77
|
-
both_finite_mask, inf_nan_mask = alg.get_finite_and_infinite_mask(self.bench_data, self.device_data)
|
|
78
|
-
self.assertListEqual(list(both_finite_mask), [True, True, True])
|
|
79
|
-
self.assertListEqual(list(inf_nan_mask), [False, False, False])
|
|
80
|
-
|
|
81
|
-
def test_get_small_value_mask(self):
|
|
82
|
-
b_value = np.array([1e-7, 1.0, 2e-6], dtype=np.float16)
|
|
83
|
-
abs_bench = np.abs(b_value)
|
|
84
|
-
both_finite_mask = [True, True, True]
|
|
85
|
-
small_value_mask = alg.get_small_value_mask(abs_bench, both_finite_mask, 1e-3)
|
|
86
|
-
self.assertListEqual(list(small_value_mask), [True, False, True])
|
|
87
|
-
|
|
88
|
-
def test_get_abs_bench_with_eps(self):
|
|
89
|
-
abs_bench, abs_bench_with_eps = alg.get_abs_bench_with_eps(self.bench_data, np.float16)
|
|
90
|
-
self.assertListEqual(list(abs_bench), list(self.abs_bench))
|
|
91
|
-
self.assertListEqual(list(abs_bench_with_eps), list(self.abs_bench_with_eps))
|
|
92
|
-
|
|
93
|
-
def test_check_inf_nan_value(self):
|
|
94
|
-
both_finite_mask, inf_nan_mask = alg.get_finite_and_infinite_mask(self.bench_data, self.device_data)
|
|
95
|
-
self.assertEqual(alg.check_inf_nan_value(inf_nan_mask, self.bench_data, self.device_data, np.float16, 0.001), 0)
|
|
96
|
-
|
|
97
|
-
def test_check_small_value(self):
|
|
98
|
-
a_value = np.array([1e-7, 1.0, 2e-6], dtype=np.float16)
|
|
99
|
-
b_value = np.array([1e-7, 1.0, 2e-6], dtype=np.float16)
|
|
100
|
-
abs_bench = np.abs(b_value)
|
|
101
|
-
both_finite_mask = [True, True, True]
|
|
102
|
-
abs_err = abs(a_value - b_value)
|
|
103
|
-
small_value_mask = alg.get_small_value_mask(abs_bench, both_finite_mask, 1e-3)
|
|
104
|
-
self.assertEqual(alg.check_small_value(abs_err, small_value_mask, 0.001), 0)
|
|
105
|
-
|
|
106
|
-
def test_check_norm_value(self):
|
|
107
|
-
both_finite_mask, inf_nan_mask = alg.get_finite_and_infinite_mask(self.bench_data, self.device_data)
|
|
108
|
-
small_value_mask = alg.get_small_value_mask(self.abs_bench, both_finite_mask, 1e-3)
|
|
109
|
-
normal_value_mask = np.logical_and(both_finite_mask, np.logical_not(small_value_mask))
|
|
110
|
-
print(normal_value_mask)
|
|
111
|
-
print(self.rel_err)
|
|
112
|
-
self.assertEqual(alg.check_norm_value(normal_value_mask, self.rel_err, 0.001), 1)
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import unittest
|
|
2
|
-
|
|
3
|
-
import pandas as pd
|
|
4
|
-
|
|
5
|
-
from msprobe.pytorch.api_accuracy_checker.compare.api_precision_compare import (
|
|
6
|
-
CompareConfig,
|
|
7
|
-
BenchmarkStandard,
|
|
8
|
-
check_csv_columns,
|
|
9
|
-
check_error_rate,
|
|
10
|
-
get_api_checker_result,
|
|
11
|
-
)
|
|
12
|
-
from msprobe.core.common.const import CompareConst
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class TestApiPrecisionCompare(unittest.TestCase):
|
|
16
|
-
|
|
17
|
-
def setUp(self):
|
|
18
|
-
# Setup paths and mock data
|
|
19
|
-
self.config = CompareConfig(
|
|
20
|
-
npu_csv_path='mock_npu.csv',
|
|
21
|
-
gpu_csv_path='mock_gpu.csv',
|
|
22
|
-
result_csv_path='result.csv',
|
|
23
|
-
details_csv_path='details.csv'
|
|
24
|
-
)
|
|
25
|
-
|
|
26
|
-
self.npu_data = pd.DataFrame({
|
|
27
|
-
'API_NAME': ['api1.forward', 'api1.backward'],
|
|
28
|
-
'DEVICE_DTYPE': ['float32', 'float32'],
|
|
29
|
-
'ERROR_RATE': ['0', '0.1'],
|
|
30
|
-
'SMALL_VALUE_ERROR_RATE': ['0.01', '0.02'],
|
|
31
|
-
'RMSE': ['0.1', '0.2'],
|
|
32
|
-
'MAX_REL_ERR': ['0.1', '0.2'],
|
|
33
|
-
'MEAN_REL_ERR': ['0.1', '0.2'],
|
|
34
|
-
'EB': ['0.1', '0.2']
|
|
35
|
-
})
|
|
36
|
-
|
|
37
|
-
self.gpu_data = pd.DataFrame({
|
|
38
|
-
'API_NAME': ['api1.forward', 'api1.backward'],
|
|
39
|
-
'DEVICE_DTYPE': ['float32', 'float32'],
|
|
40
|
-
'ERROR_RATE': ['0', '0'],
|
|
41
|
-
'SMALL_VALUE_ERROR_RATE': ['0.01', '0.01'],
|
|
42
|
-
'RMSE': ['0.1', '0.1'],
|
|
43
|
-
'MAX_REL_ERR': ['0.1', '0.1'],
|
|
44
|
-
'MEAN_REL_ERR': ['0.1', '0.1'],
|
|
45
|
-
'EB': ['0.1', '0.1']
|
|
46
|
-
})
|
|
47
|
-
|
|
48
|
-
def test_benchmark_standard_calc_ratio(self):
|
|
49
|
-
column_name = "TEST_COLUMN"
|
|
50
|
-
default_value = 0
|
|
51
|
-
result = BenchmarkStandard._calc_ratio(column_name, '2', '1', default_value)
|
|
52
|
-
self.assertEqual(result[0], 2.0)
|
|
53
|
-
|
|
54
|
-
result = BenchmarkStandard._calc_ratio(column_name, '0', '0', default_value)
|
|
55
|
-
self.assertEqual(result[0], 1.0)
|
|
56
|
-
|
|
57
|
-
def test_check_csv_columns(self):
|
|
58
|
-
with self.assertRaises(Exception):
|
|
59
|
-
check_csv_columns([], 'test_csv')
|
|
60
|
-
|
|
61
|
-
def test_check_error_rate(self):
|
|
62
|
-
result = check_error_rate('0')
|
|
63
|
-
self.assertEqual(result, CompareConst.PASS)
|
|
64
|
-
|
|
65
|
-
result = check_error_rate('0.1')
|
|
66
|
-
self.assertEqual(result, CompareConst.ERROR)
|
|
67
|
-
|
|
68
|
-
def test_get_api_checker_result(self):
|
|
69
|
-
result = get_api_checker_result([CompareConst.PASS, CompareConst.ERROR])
|
|
70
|
-
self.assertEqual(result, CompareConst.ERROR)
|
|
71
|
-
|
|
72
|
-
result = get_api_checker_result([CompareConst.PASS, CompareConst.PASS])
|
|
73
|
-
self.assertEqual(result, CompareConst.PASS)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
if __name__ == '__main__':
|
|
77
|
-
unittest.main()
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
import csv
|
|
2
|
-
import os
|
|
3
|
-
import shutil
|
|
4
|
-
import time
|
|
5
|
-
import unittest
|
|
6
|
-
|
|
7
|
-
import numpy as np
|
|
8
|
-
import torch.nn.functional
|
|
9
|
-
|
|
10
|
-
from msprobe.pytorch.api_accuracy_checker.compare.compare import Comparator
|
|
11
|
-
from msprobe.pytorch.api_accuracy_checker.compare.compare_column import CompareColumn
|
|
12
|
-
from msprobe.pytorch.api_accuracy_checker.run_ut.run_ut import UtDataInfo
|
|
13
|
-
|
|
14
|
-
current_time = time.strftime("%Y%m%d%H%M%S")
|
|
15
|
-
RESULT_FILE_NAME = "accuracy_checking_result_" + current_time + ".csv"
|
|
16
|
-
DETAILS_FILE_NAME = "accuracy_checking_details_" + current_time + '.csv'
|
|
17
|
-
base_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
class TestCompare(unittest.TestCase):
|
|
21
|
-
def setUp(self):
|
|
22
|
-
self.output_path = os.path.join(base_dir, "../compare_result")
|
|
23
|
-
os.mkdir(self.output_path, mode=0o750)
|
|
24
|
-
self.result_csv_path = os.path.join(self.output_path, RESULT_FILE_NAME)
|
|
25
|
-
self.details_csv_path = os.path.join(self.output_path, DETAILS_FILE_NAME)
|
|
26
|
-
self.is_continue_run_ut = False
|
|
27
|
-
self.compare = Comparator(self.result_csv_path, self.details_csv_path, self.is_continue_run_ut)
|
|
28
|
-
|
|
29
|
-
def tearDown(self) -> None:
|
|
30
|
-
if os.path.exists(self.output_path):
|
|
31
|
-
shutil.rmtree(self.output_path)
|
|
32
|
-
|
|
33
|
-
def test_compare_dropout(self):
|
|
34
|
-
dummy_input = torch.randn(100, 100)
|
|
35
|
-
bench_out = torch.nn.functional.dropout2d(dummy_input, 0.3)
|
|
36
|
-
npu_out = torch.nn.functional.dropout2d(dummy_input, 0.3)
|
|
37
|
-
self.assertTrue(self.compare._compare_dropout(bench_out, npu_out))
|
|
38
|
-
|
|
39
|
-
def test_compare_core_wrapper(self):
|
|
40
|
-
dummy_input = torch.randn(100, 100)
|
|
41
|
-
bench_out, npu_out = dummy_input, dummy_input
|
|
42
|
-
test_final_success, detailed_result_total = self.compare._compare_core_wrapper("api", bench_out, npu_out)
|
|
43
|
-
actual_cosine_similarity = detailed_result_total[0][3]
|
|
44
|
-
# 设置一个小的公差值
|
|
45
|
-
tolerance = 1e-4
|
|
46
|
-
# 判断实际的余弦相似度值是否在预期值的公差范围内
|
|
47
|
-
self.assertTrue(np.isclose(actual_cosine_similarity, 1.0, atol=tolerance))
|
|
48
|
-
# 对其他值进行比较,确保它们符合预期
|
|
49
|
-
detailed_result_total[0][3] = 1.0
|
|
50
|
-
self.assertEqual(detailed_result_total, [['torch.float32', 'torch.float32', (100, 100), 1.0, 0.0, ' ', ' ', ' ',
|
|
51
|
-
' ', 0.0, 0.0, 0, 0.0, 0.0, ' ', ' ', ' ', ' ', ' ', ' ', 'pass',
|
|
52
|
-
'\nMax abs error is less than 0.001, consider as pass, skip other check and set to SPACE.\n']])
|
|
53
|
-
self.assertTrue(test_final_success)
|
|
54
|
-
|
|
55
|
-
bench_out, npu_out = [dummy_input, dummy_input], [dummy_input, dummy_input]
|
|
56
|
-
test_final_success, detailed_result_total = self.compare._compare_core_wrapper("api", bench_out, npu_out)
|
|
57
|
-
actual_cosine_similarity = detailed_result_total[0][3]
|
|
58
|
-
self.assertTrue(np.isclose(actual_cosine_similarity, 1.0, atol=tolerance))
|
|
59
|
-
actual_cosine_similarity = detailed_result_total[1][3]
|
|
60
|
-
self.assertTrue(np.isclose(actual_cosine_similarity, 1.0, atol=tolerance))
|
|
61
|
-
detailed_result_total[0][3] = 1.0
|
|
62
|
-
detailed_result_total[1][3] = 1.0
|
|
63
|
-
self.assertTrue(test_final_success)
|
|
64
|
-
self.assertEqual(detailed_result_total, [['torch.float32', 'torch.float32', (100, 100), 1.0, 0.0, ' ', ' ', ' ',
|
|
65
|
-
' ', 0.0, 0.0, 0, 0.0, 0.0, ' ', ' ', ' ', ' ', ' ', ' ', 'pass',
|
|
66
|
-
'\nMax abs error is less than 0.001, consider as pass, skip other check and set to SPACE.\n'],
|
|
67
|
-
['torch.float32', 'torch.float32', (100, 100), 1.0, 0.0, ' ', ' ', ' ',
|
|
68
|
-
' ', 0.0, 0.0, 0, 0.0, 0.0, ' ', ' ', ' ', ' ', ' ', ' ', 'pass',
|
|
69
|
-
'\nMax abs error is less than 0.001, consider as pass, skip other check and set to SPACE.\n']])
|
|
70
|
-
|
|
71
|
-
def test_compare_output(self):
|
|
72
|
-
bench_out, npu_out = torch.randn(100, 100), torch.randn(100, 100)
|
|
73
|
-
bench_grad, npu_grad = [torch.randn(100, 100)], [torch.randn(100, 100)]
|
|
74
|
-
api_name = 'Functional.conv2d.0'
|
|
75
|
-
data_info = UtDataInfo(bench_grad, npu_grad, bench_out, npu_out, None, None, None)
|
|
76
|
-
is_fwd_success, is_bwd_success = self.compare.compare_output(api_name, data_info)
|
|
77
|
-
self.assertFalse(is_fwd_success)
|
|
78
|
-
# is_bwd_success should be checked
|
|
79
|
-
|
|
80
|
-
dummy_input = torch.randn(100, 100)
|
|
81
|
-
bench_out, npu_out = dummy_input, dummy_input
|
|
82
|
-
data_info = UtDataInfo(None, None, bench_out, npu_out, None, None, None)
|
|
83
|
-
is_fwd_success, is_bwd_success = self.compare.compare_output(api_name, data_info)
|
|
84
|
-
self.assertTrue(is_fwd_success)
|
|
85
|
-
self.assertTrue(is_bwd_success)
|
|
86
|
-
|
|
87
|
-
def test_record_results(self):
|
|
88
|
-
args = ('Functional.conv2d.0', False, 'N/A', [['torch.float64', 'torch.float32', (32, 64, 112, 112), 1.0,
|
|
89
|
-
0.012798667686, 'N/A', 0.81631212311, 0.159979121213, 'N/A',
|
|
90
|
-
'error', '\n']], None, 0)
|
|
91
|
-
self.compare.record_results(args)
|
|
92
|
-
with open(self.details_csv_path, 'r') as file:
|
|
93
|
-
csv_reader = csv.reader(file)
|
|
94
|
-
next(csv_reader)
|
|
95
|
-
api_name_list = [row[0] for row in csv_reader]
|
|
96
|
-
self.assertEqual(api_name_list[0], 'Functional.conv2d.0.forward.output.0')
|
|
97
|
-
|
|
98
|
-
def test_compare_torch_tensor(self):
|
|
99
|
-
cpu_output = torch.Tensor([1.0, 2.0, 3.0])
|
|
100
|
-
npu_output = torch.Tensor([1.0, 2.0, 3.0])
|
|
101
|
-
compare_column = CompareColumn()
|
|
102
|
-
status, compare_column, message = self.compare._compare_torch_tensor("api", cpu_output, npu_output,
|
|
103
|
-
compare_column)
|
|
104
|
-
self.assertEqual(status, "pass")
|
|
105
|
-
|
|
106
|
-
def test_compare_bool_tensor(self):
|
|
107
|
-
cpu_output = np.array([True, False, True])
|
|
108
|
-
npu_output = np.array([True, False, True])
|
|
109
|
-
self.assertEqual(self.compare._compare_bool_tensor(cpu_output, npu_output), (0.0, 'pass', ''))
|
|
110
|
-
|
|
111
|
-
def test_compare_builtin_type(self):
|
|
112
|
-
compare_column = CompareColumn()
|
|
113
|
-
bench_out = 1
|
|
114
|
-
npu_out = 1
|
|
115
|
-
status, compare_result, message = self.compare._compare_builtin_type(bench_out, npu_out, compare_column)
|
|
116
|
-
self.assertEqual((status, compare_result.error_rate, message), ('pass', 0, ''))
|
|
117
|
-
|
|
118
|
-
def test_compare_float_tensor(self):
|
|
119
|
-
cpu_output = torch.Tensor([1.0, 2.0, 3.0])
|
|
120
|
-
npu_output = torch.Tensor([1.0, 2.0, 3.0])
|
|
121
|
-
compare_column = CompareColumn()
|
|
122
|
-
status, compare_column, message = self.compare._compare_float_tensor("api", cpu_output.numpy(),
|
|
123
|
-
npu_output.numpy(),
|
|
124
|
-
compare_column, npu_output.dtype)
|
|
125
|
-
self.assertEqual(status, "pass")
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import unittest
|
|
2
|
-
|
|
3
|
-
from msprobe.pytorch.api_accuracy_checker.compare.compare_column import ApiPrecisionOutputColumn
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class TestCompareColumns(unittest.TestCase):
|
|
7
|
-
|
|
8
|
-
def test_api_precision_output_column(self):
|
|
9
|
-
col = ApiPrecisionOutputColumn()
|
|
10
|
-
self.assertIsInstance(col.to_column_value(), list)
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import unittest
|
|
2
|
-
|
|
3
|
-
import numpy as np
|
|
4
|
-
|
|
5
|
-
from msprobe.pytorch.api_accuracy_checker.common.utils import CompareException
|
|
6
|
-
from msprobe.pytorch.api_accuracy_checker.compare.compare_utils import check_dtype_comparable, convert_str_to_float
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class TestCompareUtils(unittest.TestCase):
|
|
10
|
-
def test_check_dtype_comparable(self):
|
|
11
|
-
x = np.array([1, 2, 3], dtype=np.int32)
|
|
12
|
-
y = np.array([4, 5, 6], dtype=np.int32)
|
|
13
|
-
self.assertTrue(check_dtype_comparable(x, y))
|
|
14
|
-
|
|
15
|
-
x = np.array([1.0, 2.0, 3.0], dtype=np.float32)
|
|
16
|
-
y = np.array([4.0, 5.0, 6.0], dtype=np.float32)
|
|
17
|
-
self.assertTrue(check_dtype_comparable(x, y))
|
|
18
|
-
|
|
19
|
-
x = np.array([True, False, True], dtype=np.bool_)
|
|
20
|
-
y = np.array([False, True, False], dtype=np.bool_)
|
|
21
|
-
self.assertTrue(check_dtype_comparable(x, y))
|
|
22
|
-
|
|
23
|
-
x = np.array([1, 2, 3], dtype=np.int32)
|
|
24
|
-
y = np.array([4.0, 5.0, 6.0], dtype=np.float32)
|
|
25
|
-
self.assertFalse(check_dtype_comparable(x, y))
|
|
26
|
-
|
|
27
|
-
x = np.array([1, 2, 3], dtype=np.int32)
|
|
28
|
-
y = np.array([True, False, True], dtype=np.bool_)
|
|
29
|
-
self.assertFalse(check_dtype_comparable(x, y))
|
|
30
|
-
|
|
31
|
-
def test_convert_str_to_float_when_valid_float(self):
|
|
32
|
-
self.assertEqual(convert_str_to_float("123.45"), 123.45)
|
|
33
|
-
|
|
34
|
-
def test_convert_str_to_float_when_valid_int(self):
|
|
35
|
-
self.assertEqual(convert_str_to_float("123.0"), 123.0)
|
|
36
|
-
|
|
37
|
-
def test_convert_str_to_float_when_valid_int_with_spaces(self):
|
|
38
|
-
self.assertEqual(convert_str_to_float(" 123.0 "), 123.0)
|
|
39
|
-
|
|
40
|
-
def test_convert_str_to_float_when_empty_string(self):
|
|
41
|
-
with self.assertRaises(CompareException) as cm:
|
|
42
|
-
convert_str_to_float('')
|
|
43
|
-
self.assertEqual(cm.exception.code, CompareException.INVALID_DATA_ERROR)
|
|
@@ -1,179 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"task": "statistics",
|
|
3
|
-
"level": "mix",
|
|
4
|
-
"dump_data_dir": null,
|
|
5
|
-
"data": {
|
|
6
|
-
"Tensor.__mul__.7.forward": {
|
|
7
|
-
"input_args": [
|
|
8
|
-
{
|
|
9
|
-
"type": "torch.Tensor",
|
|
10
|
-
"dtype": "torch.float16",
|
|
11
|
-
"shape": [
|
|
12
|
-
2048,
|
|
13
|
-
2,
|
|
14
|
-
1,
|
|
15
|
-
256
|
|
16
|
-
],
|
|
17
|
-
"Max": 1.3955078125,
|
|
18
|
-
"Min": -1.443359375,
|
|
19
|
-
"Mean": -0.00013697147369384766,
|
|
20
|
-
"Norm": 318.5,
|
|
21
|
-
"requires_grad": true
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"type": "torch.Tensor",
|
|
25
|
-
"dtype": "torch.float16",
|
|
26
|
-
"shape": [
|
|
27
|
-
2048,
|
|
28
|
-
1,
|
|
29
|
-
1,
|
|
30
|
-
256
|
|
31
|
-
],
|
|
32
|
-
"Max": 1.0,
|
|
33
|
-
"Min": -1.0,
|
|
34
|
-
"Mean": 0.214599609375,
|
|
35
|
-
"Norm": 547.0,
|
|
36
|
-
"requires_grad": false
|
|
37
|
-
}
|
|
38
|
-
],
|
|
39
|
-
"input_kwargs": {},
|
|
40
|
-
"output": [
|
|
41
|
-
{
|
|
42
|
-
"type": "torch.Tensor",
|
|
43
|
-
"dtype": "torch.float16",
|
|
44
|
-
"shape": [
|
|
45
|
-
2048,
|
|
46
|
-
2,
|
|
47
|
-
1,
|
|
48
|
-
256
|
|
49
|
-
],
|
|
50
|
-
"Max": 1.3564453125,
|
|
51
|
-
"Min": -1.443359375,
|
|
52
|
-
"Mean": -0.0014209747314453125,
|
|
53
|
-
"Norm": 240.125,
|
|
54
|
-
"requires_grad": true
|
|
55
|
-
}
|
|
56
|
-
]
|
|
57
|
-
},
|
|
58
|
-
"Torch.chunk.4.forward": {
|
|
59
|
-
"input_args": [
|
|
60
|
-
{
|
|
61
|
-
"type": "torch.Tensor",
|
|
62
|
-
"dtype": "torch.float16",
|
|
63
|
-
"shape": [
|
|
64
|
-
2048,
|
|
65
|
-
2,
|
|
66
|
-
1,
|
|
67
|
-
256
|
|
68
|
-
],
|
|
69
|
-
"Max": 1.3955078125,
|
|
70
|
-
"Min": -1.443359375,
|
|
71
|
-
"Mean": -0.00013697147369384766,
|
|
72
|
-
"Norm": 318.5,
|
|
73
|
-
"requires_grad": true
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"type": "int",
|
|
77
|
-
"value": 2
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
|
-
"input_kwargs": {
|
|
81
|
-
"dim": {
|
|
82
|
-
"type": "int",
|
|
83
|
-
"value": -1
|
|
84
|
-
}
|
|
85
|
-
},
|
|
86
|
-
"output": [
|
|
87
|
-
{
|
|
88
|
-
"type": "torch.Tensor",
|
|
89
|
-
"dtype": "torch.float16",
|
|
90
|
-
"shape": [
|
|
91
|
-
2048,
|
|
92
|
-
2,
|
|
93
|
-
1,
|
|
94
|
-
128
|
|
95
|
-
],
|
|
96
|
-
"Max": 1.3720703125,
|
|
97
|
-
"Min": -1.3759765625,
|
|
98
|
-
"Mean": 0.0015316009521484375,
|
|
99
|
-
"Norm": 226.25,
|
|
100
|
-
"requires_grad": true
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"type": "torch.Tensor",
|
|
104
|
-
"dtype": "torch.float16",
|
|
105
|
-
"shape": [
|
|
106
|
-
2048,
|
|
107
|
-
2,
|
|
108
|
-
1,
|
|
109
|
-
128
|
|
110
|
-
],
|
|
111
|
-
"Max": 1.3955078125,
|
|
112
|
-
"Min": -1.443359375,
|
|
113
|
-
"Mean": -0.0018053054809570312,
|
|
114
|
-
"Norm": 224.375,
|
|
115
|
-
"requires_grad": true
|
|
116
|
-
}
|
|
117
|
-
]
|
|
118
|
-
},
|
|
119
|
-
"Torch.cat.8.forward": {
|
|
120
|
-
"input_args": [
|
|
121
|
-
[
|
|
122
|
-
{
|
|
123
|
-
"type": "torch.Tensor",
|
|
124
|
-
"dtype": "torch.float16",
|
|
125
|
-
"shape": [
|
|
126
|
-
2048,
|
|
127
|
-
2,
|
|
128
|
-
1,
|
|
129
|
-
128
|
|
130
|
-
],
|
|
131
|
-
"Max": 1.443359375,
|
|
132
|
-
"Min": -1.3955078125,
|
|
133
|
-
"Mean": 0.0018053054809570312,
|
|
134
|
-
"Norm": 224.375,
|
|
135
|
-
"requires_grad": true
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"type": "torch.Tensor",
|
|
139
|
-
"dtype": "torch.float16",
|
|
140
|
-
"shape": [
|
|
141
|
-
2048,
|
|
142
|
-
2,
|
|
143
|
-
1,
|
|
144
|
-
128
|
|
145
|
-
],
|
|
146
|
-
"Max": 1.3720703125,
|
|
147
|
-
"Min": -1.3759765625,
|
|
148
|
-
"Mean": 0.0015316009521484375,
|
|
149
|
-
"Norm": 226.25,
|
|
150
|
-
"requires_grad": true
|
|
151
|
-
}
|
|
152
|
-
]
|
|
153
|
-
],
|
|
154
|
-
"input_kwargs": {
|
|
155
|
-
"dim": {
|
|
156
|
-
"type": "int",
|
|
157
|
-
"value": -1
|
|
158
|
-
}
|
|
159
|
-
},
|
|
160
|
-
"output": [
|
|
161
|
-
{
|
|
162
|
-
"type": "torch.Tensor",
|
|
163
|
-
"dtype": "torch.float16",
|
|
164
|
-
"shape": [
|
|
165
|
-
2048,
|
|
166
|
-
2,
|
|
167
|
-
1,
|
|
168
|
-
256
|
|
169
|
-
],
|
|
170
|
-
"Max": 1.443359375,
|
|
171
|
-
"Min": -1.3955078125,
|
|
172
|
-
"Mean": 0.0016689300537109375,
|
|
173
|
-
"Norm": 318.5,
|
|
174
|
-
"requires_grad": true
|
|
175
|
-
}
|
|
176
|
-
]
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"Torch.chunk.4.forward": {
|
|
3
|
-
"input_args": [
|
|
4
|
-
{
|
|
5
|
-
"type": "torch.Tensor",
|
|
6
|
-
"dtype": "torch.float16",
|
|
7
|
-
"shape": [
|
|
8
|
-
2048,
|
|
9
|
-
2,
|
|
10
|
-
1,
|
|
11
|
-
256
|
|
12
|
-
],
|
|
13
|
-
"Max": 1.3955078125,
|
|
14
|
-
"Min": -1.443359375,
|
|
15
|
-
"Mean": -0.00013697147369384766,
|
|
16
|
-
"Norm": 318.5,
|
|
17
|
-
"requires_grad": true
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"type": "int",
|
|
21
|
-
"value": 2
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
|
-
"input_kwargs": {
|
|
25
|
-
"dim": {
|
|
26
|
-
"type": "int",
|
|
27
|
-
"value": -1
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"output": [
|
|
31
|
-
{
|
|
32
|
-
"type": "torch.Tensor",
|
|
33
|
-
"dtype": "torch.float16",
|
|
34
|
-
"shape": [
|
|
35
|
-
2048,
|
|
36
|
-
2,
|
|
37
|
-
1,
|
|
38
|
-
128
|
|
39
|
-
],
|
|
40
|
-
"Max": 1.3720703125,
|
|
41
|
-
"Min": -1.3759765625,
|
|
42
|
-
"Mean": 0.0015316009521484375,
|
|
43
|
-
"Norm": 226.25,
|
|
44
|
-
"requires_grad": true
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"type": "torch.Tensor",
|
|
48
|
-
"dtype": "torch.float16",
|
|
49
|
-
"shape": [
|
|
50
|
-
2048,
|
|
51
|
-
2,
|
|
52
|
-
1,
|
|
53
|
-
128
|
|
54
|
-
],
|
|
55
|
-
"Max": 1.3955078125,
|
|
56
|
-
"Min": -1.443359375,
|
|
57
|
-
"Mean": -0.0018053054809570312,
|
|
58
|
-
"Norm": 224.375,
|
|
59
|
-
"requires_grad": true
|
|
60
|
-
}
|
|
61
|
-
]
|
|
62
|
-
}
|
|
63
|
-
}
|