ggml_custom_inplace method
Pointer<ggml_tensor>
ggml_custom_inplace(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - Pointer<
Pointer< args,ggml_tensor> > - int n_args,
- ggml_custom_op_t fun,
- int n_tasks,
- Pointer<
Void> userdata,
Implementation
ffi.Pointer<ggml_tensor> ggml_custom_inplace(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
ffi.Pointer<ffi.Pointer<ggml_tensor>> args,
int n_args,
ggml_custom_op_t fun,
int n_tasks,
ffi.Pointer<ffi.Void> userdata,
) {
return _ggml_custom_inplace(
ctx,
a,
args,
n_args,
fun,
n_tasks,
userdata,
);
}