| 492 | int64_t in_channels, |
| 493 | int64_t out_channels, |
| 494 | int64_t kernel_size, |
| 495 | int64_t dilation = 1) { |
| 496 | const int64_t left_pad = dilation * (kernel_size - 1); |
| 497 | auto padded = causal_left_pad_bct(ctx, input, left_pad); |
| 498 | return modules::Conv1dModule({ |
| 499 | in_channels, |
| 500 | out_channels, |
| 501 | kernel_size, |
no test coverage detected