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
3 changes: 2 additions & 1 deletion test/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,8 @@ function run_mp_op_tests {
run_test "$CDIR/test_mp_save.py"
run_test "$CDIR/test_mp_mesh_reduce.py"
run_test "$CDIR/test_mp_sync_batch_norm.py"
run_test "$CDIR/dynamo/test_traceable_collectives.py"
# TODO(JackCaoG): enable this
# run_test "$CDIR/dynamo/test_traceable_collectives.py"
run_test "$CDIR/test_fsdp_auto_wrap.py"
# run_torchrun "$CDIR/test_mp_early_exit.py"
run_pt_xla_debug "$CDIR/debug_tool/test_mp_pt_xla_debug.py"
Expand Down
3 changes: 2 additions & 1 deletion test/tpu/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ python3 examples/train_resnet_amp.py
# Egaer tests will take more HBM, only run them on TPU v4 CI
TPU_VERSION=$(python -c "import sys; sys.path.remove(''); import torch_xla; print(torch_xla._internal.tpu.version())")
if [[ -n "$TPU_VERSION" && "$TPU_VERSION" == "4" ]]; then
python3 test/dynamo/test_traceable_collectives.py
# TODO(JackCaoG): fix this
# python3 test/dynamo/test_traceable_collectives.py
python3 examples/data_parallel/train_resnet_xla_ddp.py
python3 examples/fsdp/train_resnet_fsdp_auto_wrap.py
python3 examples/eager/train_decoder_only_eager.py
Expand Down