Unverified Commit e80447f7 authored by Yuting Jiang's avatar Yuting Jiang Committed by GitHub
Browse files

Benchmark: Fix Bug - fix error message of communication-computation-overlap (#204)

**Description**
fix bug in error message of communication-computation-overlap.

**Major Revision**
- remove non existing variable
parent 2d85781b
...@@ -264,11 +264,7 @@ def _postprocess(self): ...@@ -264,11 +264,7 @@ def _postprocess(self):
torch.distributed.destroy_process_group() torch.distributed.destroy_process_group()
except BaseException as e: except BaseException as e:
self._result.set_return_code(ReturnCode.DISTRIBUTED_SETTING_DESTROY_FAILURE) self._result.set_return_code(ReturnCode.DISTRIBUTED_SETTING_DESTROY_FAILURE)
logger.error( logger.error('Post process failed - benchmark: {}, message: {}.'.format(self._name, str(e)))
'Post process failed - benchmark: {}, mode: {}, message: {}.'.format(
self._name, self._args.mode, str(e)
)
)
return False return False
return True return True
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment