mirror of
https://github.com/huggingface/candle.git
synced 2025-06-15 18:28:24 +00:00
6 lines
75 B
Python
6 lines
75 B
Python
import candle
|
|
|
|
t = candle.Tensor(42.0)
|
|
print(t)
|
|
print(candle.add(t, 3.14))
|