From 5e63c57c0c47930812822ab042a522d2649b1d61 Mon Sep 17 00:00:00 2001 From: Huy Do Date: Fri, 6 Jun 2025 13:53:13 -0700 Subject: [PATCH 1/2] Try running test_foreach sequentially Signed-off-by: Huy Do --- test/run_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/run_test.py b/test/run_test.py index f2cc18d51396..68a6e5459900 100755 --- a/test/run_test.py +++ b/test/run_test.py @@ -311,6 +311,7 @@ def __contains__(self, item): "inductor/test_max_autotune", "inductor/test_cutlass_backend", # slow due to many nvcc compilation steps, "inductor/test_flex_attention", # OOM + "test_foreach", # Flaky https://github.com/pytorch/pytorch/issues/151228 ] # A subset of onnx tests that cannot run in parallel due to high memory usage. ONNX_SERIAL_LIST = [ From 27bf6cf363dc98189b3b346d2ea12180728db087 Mon Sep 17 00:00:00 2001 From: Huy Do Date: Fri, 6 Jun 2025 16:19:12 -0700 Subject: [PATCH 2/2] Try to disable monitoring Signed-off-by: Huy Do --- .github/workflows/pull.yml | 1 + test/run_test.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index d06006a8a3c8..7d24ddfbd148 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -468,6 +468,7 @@ jobs: build-environment: linux-jammy-cuda12.6-py3.10-gcc11-sm89 docker-image: ${{ needs.linux-jammy-cuda12_6-py3_10-gcc11-sm89-build.outputs.docker-image }} test-matrix: ${{ needs.linux-jammy-cuda12_6-py3_10-gcc11-sm89-build.outputs.test-matrix }} + disable-monitor: true secrets: inherit linux-jammy-py3-clang12-executorch-build: diff --git a/test/run_test.py b/test/run_test.py index 68a6e5459900..f2cc18d51396 100755 --- a/test/run_test.py +++ b/test/run_test.py @@ -311,7 +311,6 @@ def __contains__(self, item): "inductor/test_max_autotune", "inductor/test_cutlass_backend", # slow due to many nvcc compilation steps, "inductor/test_flex_attention", # OOM - "test_foreach", # Flaky https://github.com/pytorch/pytorch/issues/151228 ] # A subset of onnx tests that cannot run in parallel due to high memory usage. ONNX_SERIAL_LIST = [