ggml_mul_mat_id method

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,
  );
}