| 634 | x = causal_conv_transpose1d( |
| 635 | ctx, |
| 636 | x, |
| 637 | block.up_conv, |
| 638 | channels, |
| 639 | out_channels, |
| 640 | config.upsample_kernel_sizes[block_index], |
| 641 | config.upsample_factors[block_index]); |
| 642 | for (size_t residual = 0; residual < block.residual_units.size(); ++residual) { |
| 643 | x = scalar_residual_unit( |
| 644 | ctx, |
| 645 | x, |
| 646 | block.residual_units[residual], |
| 647 | out_channels, |
| 648 | config.res_kernel_size, |
| 649 | dilations[residual]); |
| 650 | } |
| 651 | channels = out_channels; |
no test coverage detected