line reduction [pr] (#7296)

This commit is contained in:
George Hotz
2024-10-25 17:05:09 +07:00
committed by GitHub
parent 4fed358511
commit 199a991237
3 changed files with 3 additions and 6 deletions

View File

@@ -1,10 +1,9 @@
import unittest
import multiprocessing.shared_memory as shared_memory
from tinygrad.helpers import CI, WIN
from tinygrad.helpers import CI
from tinygrad.tensor import Tensor, Device
import numpy as np
@unittest.skipIf(WIN, "no shm on Windows")
class TestRawShmBuffer(unittest.TestCase):
def test_e2e(self):
t = Tensor.randn(2, 2, 2).realize()