ggml_map_custom3_inplace_f32 method
Pointer<ggml_tensor>
ggml_map_custom3_inplace_f32(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> a, - Pointer<
ggml_tensor> b, - Pointer<
ggml_tensor> c, - ggml_custom3_op_f32_t fun,
Implementation
ffi.Pointer<ggml_tensor> ggml_map_custom3_inplace_f32(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
ffi.Pointer<ggml_tensor> b,
ffi.Pointer<ggml_tensor> c,
ggml_custom3_op_f32_t fun,
) {
return _ggml_map_custom3_inplace_f32(
ctx,
a,
b,
c,
fun,
);
}