mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 18:48:51 +00:00
17 lines
278 B
Makefile
17 lines
278 B
Makefile
clean-ptx:
|
|
find target -name "*.ptx" -type f -delete
|
|
echo "" > candle-kernels/src/lib.rs
|
|
touch candle-kernels/build.rs
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
test:
|
|
cargo test
|
|
|
|
pyo3-test:
|
|
cargo build --profile=release-with-debug --package candle-pyo3
|
|
python3 candle-pyo3/test.py
|
|
|
|
all: test
|