summaryrefslogtreecommitdiff
path: root/candle-wasm-tests/src
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-09-27 14:15:30 +0100
committerGitHub <noreply@github.com>2023-09-27 14:15:30 +0100
commit667f01c17323a5c28a9ae12d9f4512c36cc411b9 (patch)
tree224325dd5c14729843776effcc005f5156023305 /candle-wasm-tests/src
parente59784e353562b7d225219a2f2ed631665fd38bd (diff)
downloadcandle-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.rs14
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);
+ }
+}