mirror of
https://github.com/huggingface/candle.git
synced 2025-06-14 09:57:10 +00:00
17 lines
269 B
Makefile
17 lines
269 B
Makefile
.PHONY: clean-ptx clean test
|
|
|
|
clean-ptx:
|
|
find target -name "*.ptx" -type f -delete
|
|
echo "" > candle-kernels/src/lib.rs
|
|
touch candle-kernels/build.rs
|
|
touch candle-examples/build.rs
|
|
touch candle-flash-attn/build.rs
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
test:
|
|
cargo test
|
|
|
|
all: test
|