diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-07-14 19:54:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-14 19:54:38 +0100 |
commit | d1f5d44c04d084ac96227096bd8a1f7791201b64 (patch) | |
tree | 67bfaa3473161d57096a648282f41b4f0a255609 /candle-pyo3 | |
parent | d1f6fad84a5dc372f9541887df9b8faa5de44d66 (diff) | |
download | candle-d1f5d44c04d084ac96227096bd8a1f7791201b64.tar.gz candle-d1f5d44c04d084ac96227096bd8a1f7791201b64.tar.bz2 candle-d1f5d44c04d084ac96227096bd8a1f7791201b64.zip |
Reenable pyo3 in the workspace list (#170)
* Enable pyo3 back.
* Adapt the CI.
Diffstat (limited to 'candle-pyo3')
-rw-r--r-- | candle-pyo3/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/candle-pyo3/README.md b/candle-pyo3/README.md index 100a74d2..1887f269 100644 --- a/candle-pyo3/README.md +++ b/candle-pyo3/README.md @@ -1,4 +1,5 @@ +From the top level directory run: ``` -cargo build --release --package candle-pyo3 --no-default-features && cp -f target/release/libcandle.so candle.so +cargo build --release --package candle-pyo3 && cp -f ./target/release/libcandle.so candle.so PYTHONPATH=. python3 candle-pyo3/test.py ``` |