ggml_view_1d method

Pointer<ggml_tensor> ggml_view_1d(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. int ne0,
  4. int offset,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_view_1d(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int ne0,
  int offset,
) {
  return _ggml_view_1d(
    ctx,
    a,
    ne0,
    offset,
  );
}