|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- # Copyright 2020 Huawei Technologies Co., Ltd
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # ============================================================================
- """
- Fuction:
- Test profiler to watch the performance of training.
- Usage:
- pytest tests/st/func/profiler
- """
- import os
- import pytest
-
- from mindinsight.profiler.analyser.analyser_factory import AnalyserFactory
- from tests.st.func.profiler.conftest import BASE_SUMMARY_DIR_RUN_2
-
-
- class TestAicpuAnalyser:
- """Test AICPU analyser module."""
- @classmethod
- def setup_class(cls):
- """Generate parsed files."""
- cls.summary_dir = os.path.join(BASE_SUMMARY_DIR_RUN_2, 'normal_run')
- cls.profiler = os.path.join(cls.summary_dir, 'profiler')
-
- def setup_method(self):
- """Create analyser."""
- self._analyser_aicpu_type = AnalyserFactory.instance().get_analyser(
- 'aicpu_type', self.profiler, '1')
- self._analyser_aicpu_detail = AnalyserFactory.instance().get_analyser(
- 'aicpu_detail', self.profiler, '1')
-
- @pytest.mark.level0
- @pytest.mark.env_single
- @pytest.mark.platform_x86_cpu
- @pytest.mark.platform_arm_ascend_training
- @pytest.mark.platform_x86_gpu_training
- @pytest.mark.platform_x86_ascend_training
- def test_query_aicpu_type(self):
- """Test the function of querying AICPU operator type infomation."""
- expect_result = {
- 'col_name': ['op_type', 'execution_time', 'execution_frequency', 'percent'],
- 'object': [
- ['InitData', 7.906, 1, 89.84],
- ['GetNext', 0.5905, 2, 6.71],
- ['EndOfSequence', 0.3035, 2, 3.45]
- ],
- 'size': 3
- }
- result = self._analyser_aicpu_type.query()
- assert expect_result == result
-
- @pytest.mark.level0
- @pytest.mark.env_single
- @pytest.mark.platform_x86_cpu
- @pytest.mark.platform_arm_ascend_training
- @pytest.mark.platform_x86_gpu_training
- @pytest.mark.platform_x86_ascend_training
- def test_query_aicpu_detail(self):
- """Test the function of querying AICPU operator type infomation."""
- expect_result = {
- 'col_name': ['serial_number', 'op_type', 'total_time',
- 'dispatch_time', 'run_start', 'run_end'],
- 'size': 5
- }
- result = self._analyser_aicpu_detail.query()
- del result["object"]
- assert expect_result == result
|