blob: 72e95dbe48deb5bc1b20831c21813572fb382ff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.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
|