mirror of https://github.com/commaai/tinygrad.git
tests maybe
This commit is contained in:
parent
a2c4bcf313
commit
ef4afdb5d2
|
@ -97,7 +97,7 @@ jobs:
|
|||
- name: Install Dependencies
|
||||
run: pip install -e '.[gpu,testing]'
|
||||
- name: Run Pytest (default)
|
||||
run: GPU=1 python -m pytest -s -v
|
||||
run: OPT=2 GPU=1 python -m pytest -s -v
|
||||
|
||||
testopencl:
|
||||
name: OpenCL Tests
|
||||
|
|
|
@ -22,7 +22,7 @@ OpType = Union[Type[UnaryOps], Type[BinaryOps], Type[ReduceOps], Type[MovementOp
|
|||
|
||||
DEBUG = int(os.getenv("DEBUG", "0"))
|
||||
GRAPH = int(os.getenv("GRAPH", "0"))
|
||||
OPT = int(os.getenv("OPT", "2"))
|
||||
OPT = int(os.getenv("OPT", "1"))
|
||||
NOCONV = int(os.getenv("NOCONV", "0"))
|
||||
|
||||
# TODO: movement ops that only change shape are really nops. treat them as such
|
||||
|
|
Loading…
Reference in New Issue