summaryrefslogtreecommitdiff
path: root/candle-wasm-examples/llama2-c
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-12-28 20:26:20 +0100
committerGitHub <noreply@github.com>2023-12-28 20:26:20 +0100
commit1e442d4bb90cf9d16158ef48a596828c586b1fde (patch)
tree7fb713835a92aec47720a10b9b423e8c2b48c98b /candle-wasm-examples/llama2-c
parentcd889c0f8a0a4aecd5ed6268a12394cd2462c202 (diff)
downloadcandle-1e442d4bb90cf9d16158ef48a596828c586b1fde.tar.gz
candle-1e442d4bb90cf9d16158ef48a596828c586b1fde.tar.bz2
candle-1e442d4bb90cf9d16158ef48a596828c586b1fde.zip
Fix lints for clippy 1.75. (#1494)
Diffstat (limited to 'candle-wasm-examples/llama2-c')
-rw-r--r--candle-wasm-examples/llama2-c/src/app.rs12
1 files changed, 6 insertions, 6 deletions
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<WorkerOutput, String>),
+ WorkerIn(WorkerInput),
+ WorkerOut(Result<WorkerOutput, String>),
}
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
}