mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-04-29 03:00:14 -04:00
* move more tests to test/null, split some existing ones * null work * null work * move more * fixes * move PIL * PIL in CLIP * don't move that
14 lines
333 B
Python
14 lines
333 B
Python
import unittest
|
|
from tinygrad import Variable
|
|
from tinygrad.tensor import Tensor
|
|
|
|
class TestSymbolicPad(unittest.TestCase):
|
|
def test_pad(self):
|
|
v = Variable("v", 1, 100).bind(5)
|
|
t = Tensor.ones(100)[:v].pad(((4, 0),))
|
|
t = t[:9]
|
|
assert t.tolist() == [0,0,0,0,1,1,1,1,1]
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|