Skip to content

Commit

Permalink
Skip multi_gpu_car_test on OSS (pytorch#2644)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: pytorch#2644

Skip multi_gpu_car_test on OSS as it requires multiple GPUs.

Reviewed By: q10

Differential Revision: D57949245

fbshipit-source-id: 4fb753cecd7b743b0225ff7defbed8efbf77d00d
  • Loading branch information
spcyppt authored and facebook-github-bot committed May 30, 2024
1 parent 35fa7be commit 2dd8b63
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/scripts/fbgemm_gpu_test.bash
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,16 @@ __configure_fbgemm_gpu_test_cpu () {
# These tests have non-CPU operators referenced in @given
./uvm/copy_test.py
./uvm/uvm_test.py
# require multiple GPUs
./comm/multi_gpu_car_test.py
)
}

__configure_fbgemm_gpu_test_cuda () {
ignored_tests=(
./ssd_split_table_batched_embeddings_test.py
# require multiple GPUs
./comm/multi_gpu_car_test.py
)
}

Expand All @@ -101,6 +105,8 @@ __configure_fbgemm_gpu_test_rocm () {
./ssd_split_table_batched_embeddings_test.py
# https://github.com/pytorch/FBGEMM/issues/1559
./batched_unary_embeddings_test.py
# require multiple GPUs
./comm/multi_gpu_car_test.py
)
}

Expand Down

0 comments on commit 2dd8b63

Please sign in to comment.