woah, why isn't OPT=2

This commit is contained in:
George Hotz
2023-02-27 08:03:31 -08:00
parent a52913b242
commit edc8fbfff2
3 changed files with 7 additions and 7 deletions

View File

@@ -91,8 +91,8 @@ jobs:
python-version: 3.8
- name: Install Dependencies
run: pip install -e '.[llvm,testing]' --extra-index-url https://download.pytorch.org/whl/cpu
- name: Run Pytest OPT=2
run: OPT=2 LLVM=1 python -m pytest -s -v -n=auto
- name: Run Pytest
run: LLVM=1 python -m pytest -s -v -n=auto
testtorch:
name: Torch Tests
@@ -132,9 +132,9 @@ jobs:
- name: Install Dependencies
run: pip install -e '.[gpu,testing]' --extra-index-url https://download.pytorch.org/whl/cpu
- name: Run Optimizer Test
run: OPT=2 GPU=1 python test/external_test_opt.py
run: GPU=1 python test/external_test_opt.py
- name: Run Pytest (default)
run: OPT=1 GPU=1 python -m pytest -s -v -n=auto
run: GPU=1 python -m pytest -s -v -n=auto
testopencl:
name: openpilot (OpenCL) Test