Skip to content

Commit 0fe9c04

Browse files
test
1 parent d417514 commit 0fe9c04

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

tests/test.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
import numpy as np
33

44
def test_add():
5-
example_tensor_array = ta.Tensor(np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 16]], dtype=np.int32))
5+
example_tensor_array = ta.Tensor(np.array([
6+
[1, 2, 3, 4],
7+
[5, 6, 7, 8],
8+
[9, 10, 11, 12],
9+
[13, 14, 15, 16]], dtype=np.int32))
610
example_tensor_array_scalar = ta.Tensor(100)
711
example_tensor_sum = example_tensor_array + example_tensor_array_scalar
812
print(example_tensor_sum)

0 commit comments

Comments
 (0)