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 38dd51f commit a5bb16fCopy full SHA for a5bb16f
tools/AutoTuner/src/autotuner/distributed.py
@@ -516,7 +516,7 @@ def parse_arguments():
516
517
# Calculate timeout based on cpu_budget
518
if args.cpu_budget is not None:
519
- args.timeout = args.cpu_budget / os.cpu_count()
+ args.timeout = round(args.cpu_budget / os.cpu_count() * 3600)
520
template = calculate_expected_numbers(args.timeout, args.samples)
521
print(template)
522
if not args.yes:
0 commit comments