Joqsan

Results 2 issues of Joqsan

Numpy, PyTorch, etc., provide support for zero-dimensional tensors: ```python >>> import numpy as np >>> a = np.array(55) >>> a.shape, a.ndim ((), 0) ``` plus **0D support** is one of...

This PR adds the following features: - Zero-dim support: ```python >>> from tinygrad.tensor import Tensor >>> b = Tensor(10) >>> b.shape () >>> ones = Tensor.ones(2,2,2,2) >>> ones.sum().shape () >>>...

bounty locked