mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-09 15:08:02 -05:00
rename max_pool2d to match torch, remove more fast conv crap
This commit is contained in:
@@ -90,7 +90,7 @@ class TestOps(unittest.TestCase):
|
||||
xt = Tensor(x.detach().numpy())
|
||||
|
||||
# in tinygrad
|
||||
ret = xt.maxpool2x2()
|
||||
ret = xt.max_pool2d()
|
||||
assert ret.shape == (5,2,10//2,8//2)
|
||||
ret.mean().backward()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user