Files
tinygrad/test
chenyu eb0f5b5660 failed test case for getitem with leading Nones (#4936)
* failed test case for getitem with leading Nones

torch matched numpy so tinygrad is incorrect.
another repro
```
t = np.arange(12).reshape((3, 4))
print(t[None, None, np.array([1, 2])])

t = torch.arange(12).reshape((3, 4))
print(t[None, None, torch.tensor([1, 2])].numpy())

t = Tensor.arange(12).reshape(3, 4)
print(t[None, None, Tensor([1, 2])].numpy())
```

* # noqa
2024-06-12 16:19:42 -04:00
..
2024-06-12 13:58:46 +02:00
2024-06-09 11:33:03 +03:00
2024-05-10 22:43:09 -07:00
2024-06-09 11:33:03 +03:00
2024-03-18 16:47:07 -04:00
2024-06-09 11:33:03 +03:00
2024-03-26 21:02:46 -07:00
2024-05-15 23:46:08 +03:00
2024-05-15 23:46:08 +03:00
2024-05-15 23:46:08 +03:00
2024-06-09 23:46:03 +02:00
2024-06-09 07:00:12 -04:00