(&self)
| 171 | |
| 172 | impl Clone for Fp8Linear { |
| 173 | fn clone(&self) -> Self { |
| 174 | Self { |
| 175 | f8_weight: self.f8_weight.clone(), |
| 176 | weight: std::sync::RwLock::new(self.weight.read().unwrap().clone()), |
| 177 | bias: self.bias.clone(), |
| 178 | } |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | impl Fp8Linear { |
no outgoing calls