From cff1065f5e6f46c8abd0b258c52000f9c566db59 Mon Sep 17 00:00:00 2001 From: chenyu Date: Thu, 18 Sep 2025 16:49:46 -0400 Subject: [PATCH] test CL=1 RANGEIFY=1 onnx (#12240) all except test_resize_upsample_scales_cubic_align_corners_cpu runs --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 27437a0134..f9d0fd555a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -415,7 +415,7 @@ jobs: uses: ./.github/actions/process-replay testopencl: - name: ONNX (GPU)+Optimization Tests + name: ONNX (CL)+Optimization Tests runs-on: ubuntu-22.04 timeout-minutes: 20 steps: @@ -548,14 +548,17 @@ jobs: - name: Setup Environment uses: ./.github/actions/setup-tinygrad with: - key: rangeify-minimal-llvm - deps: testing_minimal + key: rangeify-cl + deps: testing opencl: 'true' llvm: "true" - name: Test CL=1 RANGEIFY=1 run: CL=1 RANGEIFY=1 pytest -n auto test/test_ops.py test/test_schedule.py test/test_symbolic_ops.py --durations 20 - name: Test Fuse run: CL=1 RANGEIFY=2 python3 -m pytest --durations 20 test/test_softmax_fusion.py -k "not test_auto_softmax" + - name: Test ONNX + # test_resize_upsample_scales_cubic_align_corners_cpu timed out + run: CL=1 RANGEIFY=1 python -m pytest -n=auto test/external/external_test_onnx_backend.py -k "not test_resize_upsample_scales_cubic_align_corners_cpu" --durations=20 testdevectorize: name: Linux (devectorize)