From e2f9f60ac2e4ab6b39b8275442f7ad4e76995707 Mon Sep 17 00:00:00 2001 From: Laurent Mazare Date: Mon, 4 Sep 2023 09:18:32 +0200 Subject: Avoid some redundant clone. (#731) --- candle-wasm-examples/llama2-c/src/bin/m.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'candle-wasm-examples/llama2-c') 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(); -- cgit v1.2.3