mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 10:38:54 +00:00
7 lines
93 B
Python
7 lines
93 B
Python
import candle
|
|
|
|
t = candle.Tensor(42.0)
|
|
print(t)
|
|
print("shape", t.shape, t.rank)
|
|
print(t + t)
|