Skip to content

Commit

Permalink
add warning about num_workers
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Mar 29, 2024
1 parent 28adc86 commit d492d69
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions submission_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,12 @@ def main(_):
if FLAGS.framework == 'pytorch':
pytorch_init(USE_PYTORCH_DDP, RANK, profiler)

# TODO: remove once issue resolved.
if FLAGS.pytorch_eval_num_workers != 0:
logging.warning(
'WARNING: Setting pytorch_eval_num_workers != 0, will result '
'in incorrect evals currently, see issues/732.')

workload_metadata = WORKLOADS[FLAGS.workload]

# Prevent OOM on librispeech conformer.
Expand Down

0 comments on commit d492d69

Please sign in to comment.