diff --git a/tinygrad/tensor.py b/tinygrad/tensor.py index b088134118..0e06944f75 100644 --- a/tinygrad/tensor.py +++ b/tinygrad/tensor.py @@ -87,7 +87,7 @@ class Tensor: return self def detach(self): return Tensor(self.lazydata, device=self.device, requires_grad=False) - def numpy(self) -> np.ndarray: return np.array(self.lazydata.toCPU()) + def numpy(self) -> np.ndarray: return self.lazydata.toCPU() # TODO: if things are realized this won't work def to_(self, device:str):