Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,13 @@ jax_gpu =

# PyTorch CPU
pytorch_cpu =
torch==2.0.1
torchvision==0.15.2
torch==2.1.0
torchvision==0.16.0

# PyTorch GPU
pytorch_gpu =
torch==2.0.1+cu118
torchvision==0.15.2+cu118
torch==2.1.0+cu118
torchvision==0.16.0+cu118

# wandb
wandb =
Expand Down
4 changes: 3 additions & 1 deletion submission_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ def train_once(
model_params, model_state = workload.init_model_fn(
model_init_rng, dropout_rate, aux_dropout_rate)
if FLAGS.framework == 'pytorch' and FLAGS.torch_compile:
compile_error_workloads = ['librispeech_conformer', 'ogbg', 'criteo1tb']
compile_error_workloads = [
'librispeech_conformer', 'ogbg', 'criteo1tb', 'imagenet_vit'
]
eager_backend_workloads = ['librispeech_deepspeech']
aot_eager_backend_workloads = []
if FLAGS.workload in compile_error_workloads:
Expand Down