Files
candle/candle-pyo3
Laurent Mazare 618f4e4c78 Add some documentation. (#673)
* Add some documentation.

* Bump the crate version.
2023-08-30 11:54:00 +01:00
..
2023-08-24 17:46:17 +01:00
2023-08-05 14:53:57 +01:00
2023-08-30 11:54:00 +01:00
2023-08-05 14:53:57 +01:00
2023-08-06 10:17:43 +01:00

From the top level directory run the following for linux.

cargo build --profile=release-with-debug --package candle-pyo3 && cp -f ./target/release-with-debug/libcandle.so candle.so
PYTHONPATH=. python3 candle-pyo3/test.py
```bash

  Or for macOS users:
```bash
cargo build --profile=release-with-debug --package candle-pyo3 && cp -f ./target/release-with-debug/libcandle.dylib candle.so
PYTHONPATH=. python3 candle-pyo3/test.py