| 4629 | // ggml_conv_2d_s1_ph |
| 4630 | |
| 4631 | struct ggml_tensor * ggml_conv_2d_s1_ph( |
| 4632 | struct ggml_context * ctx, |
| 4633 | struct ggml_tensor * a, |
| 4634 | struct ggml_tensor * b) { |
| 4635 | return ggml_conv_2d(ctx, a, b, 1, 1, a->ne[0] / 2, a->ne[1] / 2, 1, 1); |
| 4636 | } |
| 4637 | |
| 4638 | // ggml_conv_2d_dw |
| 4639 |
nothing calls this directly
no test coverage detected