Skip to content

Commit

Permalink
BugFix: Python Profiler (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
MZSHAN authored Apr 16, 2022
1 parent cdac463 commit a3ef5d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion smdebug/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.15"
__version__ = "1.0.16"
2 changes: 2 additions & 0 deletions tests/profiler/core/test_python_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ def upload_files(args):

pool = ThreadPool(processes=10)
pool.map(upload_files, filenames)
pool.close()
pool.join()


def _validate_analysis(profiler_name, stats, expected_functions):
Expand Down

0 comments on commit a3ef5d6

Please sign in to comment.