| 218 | |
| 219 | #[derive(Config)] |
| 220 | pub struct EncoderBlockConfig { |
| 221 | n_channels_in: usize, |
| 222 | n_channels_out: usize, |
| 223 | downsample: bool, |
| 224 | } |
| 225 | |
| 226 | impl EncoderBlockConfig { |
| 227 | fn init<B: Backend>(&self, device: &B::Device) -> EncoderBlock<B> { |
nothing calls this directly
no outgoing calls
no test coverage detected