Files
tinygrad/test.py
2020-10-17 22:57:01 -07:00

11 lines
119 B
Python

import torch
from tensor import Tensor
x = np.random.randn(1,3)
W = np.random.randn(3,3)
out = x.dot(W)
print(out)