ggml_reshape_3d method

Pointer<ggml_tensor> ggml_reshape_3d(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. int ne0,
  4. int ne1,
  5. int ne2,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_reshape_3d(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int ne0,
  int ne1,
  int ne2,
) {
  return _ggml_reshape_3d(
    ctx,
    a,
    ne0,
    ne1,
    ne2,
  );
}