mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-09 15:08:02 -05:00
11 lines
119 B
Python
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)
|
|
|
|
|
|
|