From 8e2a3fc165ecffe657716cb62ffbca46716fa720 Mon Sep 17 00:00:00 2001 From: nimlgen <138685161+nimlgen@users.noreply.github.com> Date: Mon, 2 Sep 2024 18:57:57 +0300 Subject: [PATCH] raise lines count to 9300 for qcom (#6336) --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7378df6a74..ee4f36ed4d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -139,8 +139,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 <9000 lines - run: MAX_LINE_COUNT=9000 python sz.py + - name: Repo line count <9300 lines + run: MAX_LINE_COUNT=9300 python sz.py testopencl: strategy: