| 5425 | // ggml_conv_2d_s1_ph |
| 5426 | |
| 5427 | struct ggml_tensor * ggml_conv_2d_s1_ph( |
| 5428 | struct ggml_context * ctx, |
| 5429 | struct ggml_tensor * a, |
| 5430 | struct ggml_tensor * b) { |
| 5431 | return ggml_conv_2d(ctx, a, b, 1, 1, a->ne[0] / 2, a->ne[1] / 2, 1, 1); |
| 5432 | } |
| 5433 | |
| 5434 | // ggml_conv_transpose_2d_p0 |
| 5435 |
nothing calls this directly
no test coverage detected