ggml_map_custom3 method

Implementation

ffi.Pointer<ggml_tensor> ggml_map_custom3(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  ffi.Pointer<ggml_tensor> b,
  ffi.Pointer<ggml_tensor> c,
  ggml_custom3_op_t fun,
  int n_tasks,
  ffi.Pointer<ffi.Void> userdata,
) {
  return _ggml_map_custom3(
    ctx,
    a,
    b,
    c,
    fun,
    n_tasks,
    userdata,
  );
}