mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-06-24 02:14:17 +00:00
10 lines
119 B
Python
10 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)
|
|
|
|
|
|
|