From 5e6df4a3f74551cee2fc59f5356816e2f0abedc5 Mon Sep 17 00:00:00 2001 From: Laurent Mazare Date: Thu, 12 Oct 2023 22:56:59 +0200 Subject: [PATCH] Update to gemm-0.16. (#1082) * Update to gemm-0.16. * Enable wasm-simd128. --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 03abe110..9c118191 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,8 +34,7 @@ anyhow = { version = "1", features = ["backtrace"] } byteorder = "1.4.3" clap = { version = "4.2.4", features = ["derive"] } cudarc = { version = "0.9.14", features = ["f16"] } -# TODO: Switch back to the official gemm implementation once it has caught up. -gemm = { version = "0.16.0", package = "candle-gemm" } +gemm = { version = "0.16.0", features = ["wasm-simd128-enable"] } hf-hub = "0.3.0" half = { version = "2.3.1", features = ["num-traits", "use-intrinsics", "rand_distr"] } image = { version = "0.24.7", default-features = false, features = ["jpeg", "png"] }