This commit is contained in:
Meng, Hengyu 2024-08-26 08:58:54 +00:00
parent b180cb352b
commit 6494509801
6 changed files with 81 additions and 33 deletions

View file

@ -1659,6 +1659,17 @@ extern "C" {
struct ggml_tensor * b,
int stride);
GGML_API struct ggml_tensor * ggml_conv_transpose_2d(
struct ggml_context * ctx,
struct ggml_tensor * a,
struct ggml_tensor * b,
int s0,
int s1,
int p0,
int p1,
int d0,
int d1);
enum ggml_op_pool {
GGML_OP_POOL_MAX,
GGML_OP_POOL_AVG,