candle/Makefile

17 lines
269 B
Makefile
Raw Permalink Normal View History

2023-09-02 23:19:35 +08:00
.PHONY: clean-ptx clean test
2023-09-01 21:26:18 +08:00
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