From e2cf0f322ed471d8219942e4e1b008a58c69612f Mon Sep 17 00:00:00 2001 From: Roelof van Dijk <3604013+roelofvandijk@users.noreply.github.com> Date: Tue, 8 Aug 2023 16:37:24 +0200 Subject: [PATCH] [READY] ci: missing n=auto (#1486) * ci: missing n=auto * fix: add to commented test --------- Co-authored-by: Roelof van Dijk --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebb786e7ff..711635d7a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -177,12 +177,12 @@ jobs: - name: Test LLaMA compile speed run: PYTHONPATH="." METAL=1 python3 test/external/external_test_speed_llama.py #- name: Run dtype test - # run: DEBUG=4 METAL=1 python -m pytest test/test_dtype.py + # run: DEBUG=4 METAL=1 python -m pytest -n=auto test/test_dtype.py # dtype test has issues on test_half_to_int8 - name: Run metal ops test - run: DEBUG=2 METAL=1 python -m pytest test/test_ops.py + run: DEBUG=2 METAL=1 python -m pytest -n=auto test/test_ops.py - name: Run JIT test - run: DEBUG=2 METAL=1 python -m pytest test/test_jit.py + run: DEBUG=2 METAL=1 python -m pytest -n=auto test/test_jit.py - name: Check Device.DEFAULT run: WEBGPU=1 python -c "from tinygrad.lazy import Device; assert Device.DEFAULT == 'WEBGPU', Device.DEFAULT" #- name: Run webgpu pytest