| 267 | |
| 268 | #[derive(Config)] |
| 269 | pub struct DecoderBlockConfig { |
| 270 | n_channels_in: usize, |
| 271 | n_channels_out: usize, |
| 272 | upsample: bool, |
| 273 | } |
| 274 | |
| 275 | impl DecoderBlockConfig { |
| 276 | fn init<B: Backend>(&self, device: &B::Device) -> DecoderBlock<B> { |
nothing calls this directly
no outgoing calls
no test coverage detected