ggml_cont_1d method

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

Implementation

ffi.Pointer<ggml_tensor> ggml_cont_1d(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  int ne0,
) {
  return _ggml_cont_1d(
    ctx,
    a,
    ne0,
  );
}