We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9961d24 commit 8a58931Copy full SHA for 8a58931
ggml/include/ggml.h
@@ -512,6 +512,7 @@ extern "C" {
512
GGML_OP_IM2COL,
513
GGML_OP_IM2COL_BACK,
514
GGML_OP_CONV_2D,
515
+ GGML_OP_CONV_2D_IMPLICIT,
516
GGML_OP_CONV_3D,
517
GGML_OP_CONV_2D_DW,
518
GGML_OP_CONV_TRANSPOSE_2D,
@@ -1941,6 +1942,17 @@ extern "C" {
1941
1942
int d0, // dilation dimension 0
1943
int d1); // dilation dimension 1
1944
1945
+ GGML_API struct ggml_tensor * ggml_conv_2d_implicitgemm(
1946
+ struct ggml_context * ctx,
1947
+ struct ggml_tensor * a, // convolution kernel [KW, KH, IC, OC]
1948
+ struct ggml_tensor * b, // input data [W, H, C, N]
1949
+ int s0, // stride dimension 0
1950
+ int s1, // stride dimension 1
1951
+ int p0, // padding dimension 0
1952
+ int p1, // padding dimension 1
1953
+ int d0, // dilation dimension 0
1954
+ int d1); // dilation dimension 1
1955
+
1956
GGML_API struct ggml_tensor * ggml_conv_3d(
1957
struct ggml_context * ctx,
1958
struct ggml_tensor * a, // kernel [KW, KH, KD, IC * OC]
0 commit comments