mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-15 01:48:23 -05:00
* Split tests Split tests into "Test CPU" and "Test GPU". Add test flag "TEST_DEVICES" which is a comma separated list of devices: CPU,GPU,ANE * Run tests based on provided TEST_DEVICES flag By default will run all "CPU,GPU,ANE" * fix bad quote * Revert changes and use GPU=1 This is done through setting the default Tensor Device to Device.CPU of GPU=1 is set. Run GPU tests: GPU=1 pytest -s -v
75 lines
2.1 KiB
Python
75 lines
2.1 KiB
Python
import numpy as np
|
|
import torch
|
|
import unittest
|
|
from tinygrad.tensor import Tensor
|
|
from tinygrad.optim import Adam, SGD, RMSprop
|
|
from extra.utils import get_parameters
|
|
|
|
x_init = np.random.randn(1,3).astype(np.float32)
|
|
W_init = np.random.randn(3,3).astype(np.float32)
|
|
m_init = np.random.randn(1,3).astype(np.float32)
|
|
|
|
def step_tinygrad(optim, kwargs={}):
|
|
net = TinyNet()
|
|
optim = optim([net.x, net.W], **kwargs)
|
|
out = net.forward()
|
|
out.backward()
|
|
optim.step()
|
|
return net.x.cpu().data, net.W.cpu().data
|
|
|
|
def step_pytorch(optim, kwargs={}):
|
|
net = TorchNet()
|
|
optim = optim([net.x, net.W], **kwargs)
|
|
out = net.forward()
|
|
out.backward()
|
|
optim.step()
|
|
return net.x.detach().numpy(), net.W.detach().numpy()
|
|
|
|
|
|
class TinyNet():
|
|
def __init__(self):
|
|
self.x = Tensor(x_init.copy())
|
|
self.W = Tensor(W_init.copy())
|
|
self.m = Tensor(m_init.copy())
|
|
|
|
def forward(self):
|
|
out = self.x.dot(self.W).relu()
|
|
out = out.logsoftmax()
|
|
out = out.mul(self.m).add(self.m).sum()
|
|
return out
|
|
|
|
|
|
class TorchNet():
|
|
def __init__(self):
|
|
self.x = torch.tensor(x_init.copy(), requires_grad=True)
|
|
self.W = torch.tensor(W_init.copy(), requires_grad=True)
|
|
self.m = torch.tensor(m_init.copy())
|
|
|
|
def forward(self):
|
|
out = self.x.matmul(self.W).relu()
|
|
out = torch.nn.functional.log_softmax(out, dim=1)
|
|
out = out.mul(self.m).add(self.m).sum()
|
|
return out
|
|
|
|
|
|
class TestOptim(unittest.TestCase):
|
|
|
|
def test_adam(self):
|
|
for x,y in zip(step_tinygrad(Adam),
|
|
step_pytorch(torch.optim.Adam)):
|
|
np.testing.assert_allclose(x, y, atol=1e-4)
|
|
|
|
def test_sgd(self):
|
|
for x,y in zip(step_tinygrad(SGD, kwargs={'lr': 0.001}),
|
|
step_pytorch(torch.optim.SGD, kwargs={'lr': 0.001})):
|
|
np.testing.assert_allclose(x, y, atol=1e-5)
|
|
|
|
def test_rmsprop(self):
|
|
for x,y in zip(step_tinygrad(RMSprop, kwargs={'lr': 0.001, 'decay': 0.99}),
|
|
step_pytorch(torch.optim.RMSprop,
|
|
kwargs={'lr': 0.001, 'alpha': 0.99})):
|
|
np.testing.assert_allclose(x, y, atol=1e-5)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|