| 5285 | // ggml_conv_1d_ph |
| 5286 | |
| 5287 | struct ggml_tensor* ggml_conv_1d_ph( |
| 5288 | struct ggml_context * ctx, |
| 5289 | struct ggml_tensor * a, |
| 5290 | struct ggml_tensor * b, |
| 5291 | int s, |
| 5292 | int d) { |
| 5293 | return ggml_conv_1d(ctx, a, b, s, a->ne[0] / 2, d); |
| 5294 | } |
| 5295 | |
| 5296 | // ggml_conv_transpose_1d |
| 5297 |
nothing calls this directly
no test coverage detected