diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-09-27 14:15:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 14:15:30 +0100 |
commit | 667f01c17323a5c28a9ae12d9f4512c36cc411b9 (patch) | |
tree | 224325dd5c14729843776effcc005f5156023305 /Cargo.toml | |
parent | e59784e353562b7d225219a2f2ed631665fd38bd (diff) | |
download | candle-667f01c17323a5c28a9ae12d9f4512c36cc411b9.tar.gz candle-667f01c17323a5c28a9ae12d9f4512c36cc411b9.tar.bz2 candle-667f01c17323a5c28a9ae12d9f4512c36cc411b9.zip |
Simd128 vec-dot for q4_0. (#974)
* Simd128 vec-dot for q4_0.
* Bugfix.
* Add wasm tests.
* Bugfix for the q40 vecdot.
* More quantization tests.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,8 +12,9 @@ members = [ "candle-wasm-examples/whisper", "candle-wasm-examples/yolo", "candle-wasm-examples/bert", - "candle-wasm-examples/t5", "candle-wasm-examples/phi", + "candle-wasm-examples/t5", + "candle-wasm-tests", ] exclude = ["candle-flash-attn", "candle-kernels"] resolver = "2" |