From 1e442d4bb90cf9d16158ef48a596828c586b1fde Mon Sep 17 00:00:00 2001 From: Laurent Mazare Date: Thu, 28 Dec 2023 20:26:20 +0100 Subject: Fix lints for clippy 1.75. (#1494) --- candle-wasm-examples/llama2-c/src/app.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'candle-wasm-examples/llama2-c') diff --git a/candle-wasm-examples/llama2-c/src/app.rs b/candle-wasm-examples/llama2-c/src/app.rs index f254a5ae..1e40b77e 100644 --- a/candle-wasm-examples/llama2-c/src/app.rs +++ b/candle-wasm-examples/llama2-c/src/app.rs @@ -34,8 +34,8 @@ pub enum Msg { Run, UpdateStatus(String), SetModel(ModelData), - WorkerInMsg(WorkerInput), - WorkerOutMsg(Result), + WorkerIn(WorkerInput), + WorkerOut(Result), } pub struct CurrentDecode { @@ -75,7 +75,7 @@ impl Component for App { let status = "loading weights".to_string(); let cb = { let link = ctx.link().clone(); - move |e| link.send_message(Self::Message::WorkerOutMsg(e)) + move |e| link.send_message(Self::Message::WorkerOut(e)) }; let worker = Worker::bridge(std::rc::Rc::new(cb)); Self { @@ -128,11 +128,11 @@ impl Component for App { let prompt = self.prompt.borrow().clone(); console_log!("temp: {}, top_p: {}, prompt: {}", temp, top_p, prompt); ctx.link() - .send_message(Msg::WorkerInMsg(WorkerInput::Run(temp, top_p, prompt))) + .send_message(Msg::WorkerIn(WorkerInput::Run(temp, top_p, prompt))) } true } - Msg::WorkerOutMsg(output) => { + Msg::WorkerOut(output) => { match output { Ok(WorkerOutput::WeightsLoaded) => self.status = "weights loaded!".to_string(), Ok(WorkerOutput::GenerationDone(Err(err))) => { @@ -165,7 +165,7 @@ impl Component for App { } true } - Msg::WorkerInMsg(inp) => { + Msg::WorkerIn(inp) => { self.worker.send(inp); true } -- cgit v1.2.3