ggml_mul_mat_id method
Pointer<ggml_tensor>
ggml_mul_mat_id(
- Pointer<
ggml_context> ctx, - Pointer<
ggml_tensor> as1, - Pointer<
ggml_tensor> b, - Pointer<
ggml_tensor> ids,
indirect matrix multiplication
Implementation
ffi.Pointer<ggml_tensor> ggml_mul_mat_id(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> as1,
ffi.Pointer<ggml_tensor> b,
ffi.Pointer<ggml_tensor> ids,
) {
return _ggml_mul_mat_id(
ctx,
as1,
b,
ids,
);
}