| 73 | |
| 74 | #[derive(Config)] |
| 75 | pub struct EncoderConfig { |
| 76 | channels: Vec<(usize, usize)>, |
| 77 | n_group: usize, |
| 78 | n_channels_out: usize, |
| 79 | } |
| 80 | |
| 81 | impl EncoderConfig { |
| 82 | fn init<B: Backend>(&self, device: &B::Device) -> Encoder<B> { |
nothing calls this directly
no outgoing calls
no test coverage detected