bump line count to 9800

This commit is contained in:
George Hotz
2024-09-25 09:13:56 +08:00
parent 5c240c34aa
commit b0ffe2452b

View File

@@ -142,8 +142,8 @@ jobs:
mypy -c "from tinygrad.tensor import Tensor; print(Tensor([1,2,3,4,5]))"
- name: Test DEBUG
run: DEBUG=100 python3 -c "from tinygrad import Tensor; N = 1024; a, b = Tensor.rand(N, N), Tensor.rand(N, N); c = (a.reshape(N, 1, N) * b.T.reshape(1, N, N)).sum(axis=2); print((c.numpy() - (a.numpy() @ b.numpy())).mean())"
- name: Repo line count <9700 lines
run: MAX_LINE_COUNT=9700 python sz.py
- name: Repo line count <9800 lines
run: MAX_LINE_COUNT=9800 python sz.py
testopencl:
strategy: