!5343 Delete __del__func in Profiler.

Merge pull request !5343 from yuximiao/master
This commit is contained in:
mindspore-ci-bot 2020-08-27 21:11:50 +08:00 committed by Gitee
commit 86c39d34ad
1 changed files with 3 additions and 5 deletions

View File

@ -205,6 +205,9 @@ class Profiler:
except (ProfilerIOException, ProfilerFileNotFoundException, RuntimeError) as err: except (ProfilerIOException, ProfilerFileNotFoundException, RuntimeError) as err:
logger.warning('Fail to write timeline data: %s', err) logger.warning('Fail to write timeline data: %s', err)
os.environ['PROFILING_MODE'] = str("false")
context.set_context(enable_profiling=False)
def _analyse_step_trace(self, source_path, framework_parser): def _analyse_step_trace(self, source_path, framework_parser):
""" """
Analyse step trace data and save the result. Analyse step trace data and save the result.
@ -275,11 +278,6 @@ class Profiler:
timeline_analyser.write_timeline() timeline_analyser.write_timeline()
timeline_analyser.write_timeline_summary() timeline_analyser.write_timeline_summary()
def __del__(self):
"""Disable the profiling collection service, called after training."""
os.environ['PROFILING_MODE'] = str("false")
context.set_context(enable_profiling=False)
def _get_profiling_job_id(self): def _get_profiling_job_id(self):
"""Get profiling job id, which was generated by ada service. """Get profiling job id, which was generated by ada service.