Browse Source

!192 fix the aicpu profiling file does not exist thrown the exception

Merge pull request !192 from 治愈系潇洒哥/r0.3
pull/192/MERGE
mindspore-ci-bot Gitee 5 years ago
parent
commit
b46f83e0ca
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      mindinsight/profiler/parser/aicpu_data_parser.py

+ 2
- 1
mindinsight/profiler/parser/aicpu_data_parser.py View File

@@ -15,6 +15,7 @@
"""
The parser for AI CPU preprocess data.
"""
import os

from tabulate import tabulate

@@ -50,7 +51,7 @@ class DataPreProcessParser:
def execute(self):
"""Execute the parser, get result data, and write it to the output file."""

if self._source_file_name is None:
if not os.path.exists(self._source_file_name):
logger.info("Did not find the aicpu profiling source file")
return



Loading…
Cancel
Save