ggml_set method

Pointer<ggml_tensor> ggml_set(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a,
  3. Pointer<ggml_tensor> b,
  4. int nb1,
  5. int nb2,
  6. int nb3,
  7. int offset,
)

Implementation

ffi.Pointer<ggml_tensor> ggml_set(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  ffi.Pointer<ggml_tensor> b,
  int nb1,
  int nb2,
  int nb3,
  int offset,
) {
  return _ggml_set(
    ctx,
    a,
    b,
    nb1,
    nb2,
    nb3,
    offset,
  );
}