diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-06 06:50:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-06 06:50:33 +0100 |
commit | 88bd3b604af0151b0da792980be482d396867e42 (patch) | |
tree | fbd85e55085407978a910e8daa416e9dd6db7825 /Makefile | |
parent | b2788342673f76920a12e6feb6c6cc1209062193 (diff) | |
download | candle-88bd3b604af0151b0da792980be482d396867e42.tar.gz candle-88bd3b604af0151b0da792980be482d396867e42.tar.bz2 candle-88bd3b604af0151b0da792980be482d396867e42.zip |
Add some tensor creation functions to the pyo3 bindings. (#326)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -9,4 +9,9 @@ clean: test: cargo test +pyo3-test: + cargo build --profile=release-with-debug --package candle-pyo3 + ln -f -s ./target/release-with-debug/libcandle.so candle.so + PYTHONPATH=. python3 candle-pyo3/test.py + all: test |