|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- # 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.
- # ============================================================================
- """
- Function:
- 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 import PROFILER_DIR
- from tests.utils.tools import compare_result_with_file
-
-
- class TestTimelineAnalyser:
- """Test timeline analyser module."""
- def setup_method(self):
- """Create analyser."""
- self.profiler = PROFILER_DIR
- self.device_id = 0
- self._analyser = AnalyserFactory.instance().get_analyser(
- 'timeline', self.profiler, self.device_id)
-
- @pytest.mark.parametrize(
- "device_target, filename",
- [('gpu', 'gpu_timeline_display_{}.json'),
- ('ascend', 'ascend_timeline_display_{}.json')]
- )
- def test_get_display_timeline(self, device_target, filename):
- """Test the function of get timeline detail data for UI display."""
- file_path = os.path.join(
- self.profiler,
- filename.format(self.device_id)
- )
-
- result = self._analyser.get_display_timeline(device_target)
- compare_result_with_file(result, file_path)
-
- @pytest.mark.parametrize(
- "device_target, filename",
- [('gpu', 'gpu_timeline_summary_{}.json'),
- ('ascend', 'ascend_timeline_summary_{}.json')]
- )
- def test_get_timeline_summary(self, device_target, filename):
- """Test the function of get timeline summary data for UI display."""
- file_path = os.path.join(
- self.profiler,
- filename.format(self.device_id)
- )
-
- result = self._analyser.get_timeline_summary(device_target)
- compare_result_with_file(result, file_path)
|