mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-08-29 12:16:08 +00:00
broken
This commit is contained in:
@@ -84,13 +84,13 @@ class TestRangeify(unittest.TestCase):
|
||||
C = Tensor.empty(N, N)
|
||||
(A@B@C).realize()
|
||||
|
||||
@unittest.skip("gemm tc")
|
||||
#@unittest.skip("gemm tc")
|
||||
def test_double_gemm_tc(self):
|
||||
with Context(DEBUG=0):
|
||||
A, B, C = [Tensor.randn(N, N) for _ in range(3)]
|
||||
Tensor.realize(A, B, C)
|
||||
args = (Opt(OptOps.TC, 0, (0,0,1,1))), Opt(OptOps.TC, 0, (0,0,1,0))
|
||||
#args = (Opt(OptOps.TC, 0, (0,0,1,0)),)
|
||||
#args = (Opt(OptOps.TC, 0, (0,0,1,1))), Opt(OptOps.TC, 0, (0,0,1,0))
|
||||
args = (Opt(OptOps.TC, 0, (0,0,1,0)),)
|
||||
#args = (Opt(OptOps.TC, 0, (0,0,1,1)),)
|
||||
tst = (A@B@C).contiguous(arg=args).realize()
|
||||
assert tst.uop.base.op is Ops.BUFFER, "buffer"
|
||||
|
||||
Reference in New Issue
Block a user