| 4428 | // ggml_conv_1d_ph |
| 4429 | |
| 4430 | struct ggml_tensor* ggml_conv_1d_ph( |
| 4431 | struct ggml_context * ctx, |
| 4432 | struct ggml_tensor * a, |
| 4433 | struct ggml_tensor * b, |
| 4434 | int s, |
| 4435 | int d) { |
| 4436 | return ggml_conv_1d(ctx, a, b, s, a->ne[0] / 2, d); |
| 4437 | } |
| 4438 | |
| 4439 | // ggml_conv_1d_dw |
| 4440 |
no test coverage detected