Skip to content

Commit

Permalink
Update ggml.c
Browse files Browse the repository at this point in the history
Co-authored-by: Georgi Gerganov <[email protected]>
  • Loading branch information
jart and ggerganov authored May 12, 2024
1 parent e1c02a7 commit bb3a527
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -12069,8 +12069,9 @@ static void ggml_compute_forward_mul_mat_id(
const struct ggml_tensor * ids = dst->src[2];

#if GGML_USE_LLAMAFILE
if (llamafile_mixmul(params, src0, src1, ids, dst))
if (llamafile_mixmul(params, src0, src1, ids, dst)) {
return;
}
#endif

const int ith = params->ith;
Expand Down

0 comments on commit bb3a527

Please sign in to comment.