summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-08-06 06:50:33 +0100
committerGitHub <noreply@github.com>2023-08-06 06:50:33 +0100
commit88bd3b604af0151b0da792980be482d396867e42 (patch)
treefbd85e55085407978a910e8daa416e9dd6db7825 /Makefile
parentb2788342673f76920a12e6feb6c6cc1209062193 (diff)
downloadcandle-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--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cb472d80..cc967702 100644
--- a/Makefile
+++ b/Makefile
@@ -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