diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-18 09:38:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-18 09:38:22 +0100 |
commit | c78ce765016392673805ed8dfafb4ae1a7b6c26f (patch) | |
tree | df7bab84b80da4754aef94f0dd73503c33bc6e44 /candle-examples/examples/llama_multiprocess/model.rs | |
parent | 13401df4d141bf568a2c2056411d62060707e79b (diff) | |
download | candle-c78ce765016392673805ed8dfafb4ae1a7b6c26f.tar.gz candle-c78ce765016392673805ed8dfafb4ae1a7b6c26f.tar.bz2 candle-c78ce765016392673805ed8dfafb4ae1a7b6c26f.zip |
Add a simple Module trait and implement it for the various nn layers (#500)
* Start adding the module trait.
* Use the module trait.
* Implement module for qmatmul.
Diffstat (limited to 'candle-examples/examples/llama_multiprocess/model.rs')
-rw-r--r-- | candle-examples/examples/llama_multiprocess/model.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/candle-examples/examples/llama_multiprocess/model.rs b/candle-examples/examples/llama_multiprocess/model.rs index fa8f9abf..1e7cafa2 100644 --- a/candle-examples/examples/llama_multiprocess/model.rs +++ b/candle-examples/examples/llama_multiprocess/model.rs @@ -1,6 +1,6 @@ use candle::backend::BackendStorage; use candle::{CpuStorage, CustomOp1, DType, Device, IndexOp, Layout, Result, Shape, Tensor, D}; -use candle_nn::{rms_norm, Embedding, Linear, RmsNorm, VarBuilder}; +use candle_nn::{rms_norm, Embedding, Linear, Module, RmsNorm, VarBuilder}; use cudarc::nccl::safe::{Comm, ReduceOp}; use half::f16; use std::rc::Rc; |