Skip to content

Commit

Permalink
Report Wall clock time only to ms (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic authored Jun 7, 2024
1 parent 8b1e218 commit 0eec46d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/duct.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def finalize(self):
print(f"Exit Code: {self.process.returncode}")
print(f"{Colors.OKCYAN}Command: {self.command}")
print(f"Log files location: {self.output_prefix}")
print(f"Wall Clock Time: {self.elapsed_time}")
print(f"Wall Clock Time: {self.elapsed_time:.3f} sec")
print(
f"Memory Peak Usage: {self.max_values.get('totals', {}).get('pmem', 'unknown')}%"
)
Expand Down

0 comments on commit 0eec46d

Please sign in to comment.