summaryrefslogtreecommitdiff
path: root/candle-wasm-examples/llama2-c
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-08-15 10:48:57 +0100
committerGitHub <noreply@github.com>2023-08-15 10:48:57 +0100
commit531f23b4d092cf8df26cae963687dc8904307ae4 (patch)
treef6b4dd580c92e85b62c8c409415569f06baf0e34 /candle-wasm-examples/llama2-c
parent495e0b758035039e902819f3ed059725d0593be1 (diff)
downloadcandle-531f23b4d092cf8df26cae963687dc8904307ae4.tar.gz
candle-531f23b4d092cf8df26cae963687dc8904307ae4.tar.bz2
candle-531f23b4d092cf8df26cae963687dc8904307ae4.zip
Rename vec-dot to vec-ops. (#449)
* Rename vec-dot to vec-ops. * Also bump the crate version. * Add a currently empty readme.
Diffstat (limited to 'candle-wasm-examples/llama2-c')
-rw-r--r--candle-wasm-examples/llama2-c/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/candle-wasm-examples/llama2-c/Cargo.toml b/candle-wasm-examples/llama2-c/Cargo.toml
index dab99aee..8f743088 100644
--- a/candle-wasm-examples/llama2-c/Cargo.toml
+++ b/candle-wasm-examples/llama2-c/Cargo.toml
@@ -9,8 +9,8 @@ categories.workspace = true
license.workspace = true
[dependencies]
-candle = { path = "../../candle-core", version = "0.1.0", package = "candle-core" }
-candle-nn = { path = "../../candle-nn", version = "0.1.0" }
+candle = { path = "../../candle-core", version = "0.1.1", package = "candle-core" }
+candle-nn = { path = "../../candle-nn", version = "0.1.1" }
num-traits = { workspace = true }
tokenizers = { workspace = true, features = ["unstable_wasm"] }