From e3261216b157a7305c18ccdd766b6e2a41afe483 Mon Sep 17 00:00:00 2001 From: Laurent Mazare Date: Thu, 5 Sep 2024 22:46:55 +0100 Subject: Clippy fixes for 1.81.0. (#2461) * Clippy fixes for 1.81.0. * Another fix. --- candle-wasm-examples/llama2-c/src/model.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/model.rs b/candle-wasm-examples/llama2-c/src/model.rs index ab9333d2..01f5910a 100644 --- a/candle-wasm-examples/llama2-c/src/model.rs +++ b/candle-wasm-examples/llama2-c/src/model.rs @@ -275,7 +275,7 @@ impl Llama { let lm_head = linear(cfg.dim, cfg.vocab_size, vb.pp("lm_head"))?; let norm = rms_norm(cfg.dim, cfg.norm_eps, vb.pp("model.norm"))?; let blocks: Vec<_> = (0..cfg.n_layers) - .map(|i| Block::load(vb.pp(&format!("model.layers.{i}")), cache, cfg).unwrap()) + .map(|i| Block::load(vb.pp(format!("model.layers.{i}")), cache, cfg).unwrap()) .collect(); Ok(Self::new(wte, blocks, norm, lm_head)) } -- cgit v1.2.3