Skip to content

Commit

Permalink
fix mul_blas
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrik-johansson committed Jan 16, 2025
1 parent 01dabdd commit fd41950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fmpz_mat/mul_blas.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ static void _red_worker(void * varg)
slong Bstartrow = arg->Bstartrow;
slong Bstoprow = arg->Bstoprow;
fmpz * Aentries = arg->Aentries;
slong Astride;
slong Astride = arg->Astride;
fmpz * Bentries = arg->Bentries;
slong Bstride;
slong Bstride = arg->Bstride;
double * dA = arg->dA;
double * dB = arg->dB;

Expand Down

0 comments on commit fd41950

Please sign in to comment.