summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-08-14 10:34:42 +0100
committerGitHub <noreply@github.com>2023-08-14 10:34:42 +0100
commit34f4b3187ec0e30e439a89ff7211a74050bc2358 (patch)
tree0ec03c1682c87db62e5a41a3eb1d59a483074c03 /Makefile
parenteab54e449004bf0d5544ee0261dc89d2c3062b77 (diff)
downloadcandle-34f4b3187ec0e30e439a89ff7211a74050bc2358.tar.gz
candle-34f4b3187ec0e30e439a89ff7211a74050bc2358.tar.bz2
candle-34f4b3187ec0e30e439a89ff7211a74050bc2358.zip
Add a naive conv2d cuda kernel. (#438)
* Add a naive conv2d cuda kernel. * Proper conv2d support on the rust side. * Conv1d testing on gpu. * Also use the test on gpus. * Fix the clean-ptx target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index eba92821..cc0a0a36 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,8 @@ 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