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 /candle-wasm-tests/src | |
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 'candle-wasm-tests/src')
-rw-r--r-- | candle-wasm-tests/src/lib.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/candle-wasm-tests/src/lib.rs b/candle-wasm-tests/src/lib.rs new file mode 100644 index 00000000..7d12d9af --- /dev/null +++ b/candle-wasm-tests/src/lib.rs @@ -0,0 +1,14 @@ +pub fn add(left: usize, right: usize) -> usize { + left + right +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn it_works() { + let result = add(2, 2); + assert_eq!(result, 4); + } +} |