diff options
Diffstat (limited to 'candle-pyo3/test.py')
-rw-r--r-- | candle-pyo3/test.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/candle-pyo3/test.py b/candle-pyo3/test.py index 1d792de5..8f906060 100644 --- a/candle-pyo3/test.py +++ b/candle-pyo3/test.py @@ -2,12 +2,14 @@ import candle t = candle.Tensor(42.0) print(t) -print("shape", t.shape, t.rank) +print(t.shape, t.rank, t.device) print(t + t) t = candle.Tensor([3.0, 1, 4, 1, 5, 9, 2, 6]) print(t) print(t+t) + t = t.reshape([2, 4]) print(t.matmul(t.t())) + print(t.to_dtype("u8")) |