diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-14 10:34:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-14 10:34:42 +0100 |
commit | 34f4b3187ec0e30e439a89ff7211a74050bc2358 (patch) | |
tree | 0ec03c1682c87db62e5a41a3eb1d59a483074c03 /Makefile | |
parent | eab54e449004bf0d5544ee0261dc89d2c3062b77 (diff) | |
download | candle-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-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |