2023-09-02 23:19:35 +08:00
|
|
|
.PHONY: clean-ptx clean test
|
2023-09-01 21:26:18 +08:00
|
|
|
|
2023-06-22 20:57:51 +08:00
|
|
|
clean-ptx:
|
|
|
|
find target -name "*.ptx" -type f -delete
|
2023-06-27 18:31:04 +08:00
|
|
|
echo "" > candle-kernels/src/lib.rs
|
|
|
|
touch candle-kernels/build.rs
|
2023-08-14 17:34:42 +08:00
|
|
|
touch candle-examples/build.rs
|
|
|
|
touch candle-flash-attn/build.rs
|
2023-06-22 20:57:51 +08:00
|
|
|
|
|
|
|
clean:
|
|
|
|
cargo clean
|
|
|
|
|
|
|
|
test:
|
|
|
|
cargo test
|
|
|
|
|
|
|
|
all: test
|