diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-09-04 09:18:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-04 09:18:32 +0200 |
commit | e2f9f60ac2e4ab6b39b8275442f7ad4e76995707 (patch) | |
tree | 82d1e8109bb7b8902ce286bdc8ffd82c5cb90545 /candle-wasm-examples/llama2-c | |
parent | d0cdea95a5ec8f53b24c6de19f6029060339ed98 (diff) | |
download | candle-e2f9f60ac2e4ab6b39b8275442f7ad4e76995707.tar.gz candle-e2f9f60ac2e4ab6b39b8275442f7ad4e76995707.tar.bz2 candle-e2f9f60ac2e4ab6b39b8275442f7ad4e76995707.zip |
Avoid some redundant clone. (#731)
Diffstat (limited to 'candle-wasm-examples/llama2-c')
-rw-r--r-- | candle-wasm-examples/llama2-c/src/bin/m.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-wasm-examples/llama2-c/src/bin/m.rs b/candle-wasm-examples/llama2-c/src/bin/m.rs index d014e38a..da71f071 100644 --- a/candle-wasm-examples/llama2-c/src/bin/m.rs +++ b/candle-wasm-examples/llama2-c/src/bin/m.rs @@ -80,7 +80,7 @@ impl Model { let tokens = self .inner .tokenizer - .encode(prompt.to_string(), true) + .encode(prompt, true) .map_err(|m| JsError::new(&m.to_string()))? .get_ids() .to_vec(); |