| 115 | if (count <= 0) { |
| 116 | throw std::runtime_error("bs_roformer freqs_per_bands values must be positive"); |
| 117 | } |
| 118 | total_freqs += count; |
| 119 | } |
| 120 | if (total_freqs != config.stft_freq_bins) { |
| 121 | throw std::runtime_error( |
| 122 | "bs_roformer freqs_per_bands sum mismatch: expected " + |
no test coverage detected