diff options
author | laurent <laurent.mazare@gmail.com> | 2023-06-27 11:31:04 +0100 |
---|---|---|
committer | laurent <laurent.mazare@gmail.com> | 2023-06-27 11:31:04 +0100 |
commit | 380d61e99092c55532ce06d4aff711b95c18209d (patch) | |
tree | 0897cb236ead5559d7ac27976e618bdc7ae125a3 /Makefile | |
parent | d7f729fb8f1d4b224f18ca3d7ae1163afe57a094 (diff) | |
download | candle-380d61e99092c55532ce06d4aff711b95c18209d.tar.gz candle-380d61e99092c55532ce06d4aff711b95c18209d.tar.bz2 candle-380d61e99092c55532ce06d4aff711b95c18209d.zip |
Fix two cuda bugs (matmul and where_cond).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..cb472d80 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +clean-ptx: + find target -name "*.ptx" -type f -delete + echo "" > candle-kernels/src/lib.rs + touch candle-kernels/build.rs + +clean: + cargo clean + +test: + cargo test + +all: test |