summaryrefslogtreecommitdiff
path: root/candle-pyo3/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'candle-pyo3/test.py')
-rw-r--r--candle-pyo3/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-pyo3/test.py b/candle-pyo3/test.py
index 7f24b49d..a56ed22c 100644
--- a/candle-pyo3/test.py
+++ b/candle-pyo3/test.py
@@ -7,7 +7,7 @@ print(t + t)
t = candle.Tensor([3.0, 1, 4, 1, 5, 9, 2, 6])
print(t)
-print(t+t)
+print(t + t)
t = t.reshape([2, 4])
print(t.matmul(t.t()))