ggml_im2col_back method

Pointer<ggml_tensor> ggml_im2col_back(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. Pointer<ggml_tensor> b,
  4. Pointer<Int64> ne,
  5. int s0,
  6. int s1,
  7. int p0,
  8. int p1,
  9. int d0,
  10. int d1,
  11. bool is_2D,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_im2col_back(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  ffi.Pointer<ggml_tensor> b,
  ffi.Pointer<ffi.Int64> ne,
  int s0,
  int s1,
  int p0,
  int p1,
  int d0,
  int d1,
  bool is_2D,
) {
  return _ggml_im2col_back(
    ctx,
    a,
    b,
    ne,
    s0,
    s1,
    p0,
    p1,
    d0,
    d1,
    is_2D,
  );
}