readme and .ane()

This commit is contained in:
George Hotz
2020-12-12 16:15:38 -08:00
parent da873cd556
commit bc5df477de
3 changed files with 14 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
import numpy as np
from tinygrad.tensor import Tensor
a = Tensor([-2,-1,0,1,2]).ane_()
a = Tensor([-2,-1,0,1,2]).ane()
print(a.cpu())
b = a.relu()
print(b.cpu())