ggml_im2col_3d method

Pointer<ggml_tensor> ggml_im2col_3d(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. Pointer<ggml_tensor> b,
  4. int IC,
  5. int s0,
  6. int s1,
  7. int s2,
  8. int p0,
  9. int p1,
  10. int p2,
  11. int d0,
  12. int d1,
  13. int d2,
  14. ggml_type dst_type,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_im2col_3d(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  ffi.Pointer<ggml_tensor> b,
  int IC,
  int s0,
  int s1,
  int s2,
  int p0,
  int p1,
  int p2,
  int d0,
  int d1,
  int d2,
  ggml_type dst_type,
) {
  return _ggml_im2col_3d(
    ctx,
    a,
    b,
    IC,
    s0,
    s1,
    s2,
    p0,
    p1,
    p2,
    d0,
    d1,
    d2,
    dst_type.value,
  );
}