update a few more tests for RANGEIFY (#12434)

This commit is contained in:
chenyu
2025-10-03 12:16:58 +08:00
committed by GitHub
parent 9cd365c12e
commit bf99de7b1e
3 changed files with 6 additions and 4 deletions

View File

@@ -1,10 +1,11 @@
import unittest
import multiprocessing.shared_memory as shared_memory
from tinygrad.helpers import CI
from tinygrad.helpers import CI, WIN, RANGEIFY
from tinygrad.tensor import Tensor, Device
import numpy as np
class TestRawShmBuffer(unittest.TestCase):
@unittest.skipIf(WIN and CI and RANGEIFY, "only fails with RANGEIFY on CI windows instance")
def test_e2e(self):
t = Tensor.randn(2, 2, 2).realize()