We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d27b280 commit 587cb34Copy full SHA for 587cb34
tools/AutoTuner/src/autotuner/distributed.py
@@ -514,7 +514,7 @@ def parse_arguments():
514
515
# Calculate timeout based on cpu_budget
516
if args.cpu_budget is not None:
517
- args.timeout = args.cpu_budget / os.cpu_count()
+ args.timeout = round(args.cpu_budget / os.cpu_count() * 3600)
518
template = calculate_expected_numbers(args.timeout, args.samples)
519
print(template)
520
if not args.yes:
0 commit comments