ggml_set_1d_inplace method

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

Implementation

ffi.Pointer<ggml_tensor> ggml_set_1d_inplace(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  ffi.Pointer<ggml_tensor> b,
  int offset,
) {
  return _ggml_set_1d_inplace(
    ctx,
    a,
    b,
    offset,
  );
}