Skip to content

Commit

Permalink
Fix FTBFS on mips64el with GCC 14
Browse files Browse the repository at this point in the history
Origin: upstream, OpenMathLib/OpenBLAS#4864
Bug: OpenMathLib/OpenBLAS#4862
Reviewed-by: Sébastien Villemot <[email protected]>
Last-Update: 2024-08-13

Last-Update: 2024-08-13
Gbp-Pq: Name gcc14-mips64el.patch
  • Loading branch information
Debian Science Team authored and svillemot committed Aug 13, 2024
1 parent 995ed09 commit ab387c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lapack/potrf/potrf_L_parallel.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,
HERK_THREAD_LN(&newarg, NULL, NULL, sa, sb, 0);
#else
syrk_thread(mode | BLAS_TRANSA_N | BLAS_TRANSB_T | BLAS_UPLO,
&newarg, NULL, NULL, (int (*)(void))HERK_LN, sa, sb, args -> nthreads);
&newarg, NULL, NULL, (int (*)(blas_arg_t *, BLASLONG *, BLASLONG *, FLOAT *, FLOAT *, BLASLONG))HERK_LN, sa, sb, args -> nthreads);
#endif
}
}
Expand Down
2 changes: 1 addition & 1 deletion lapack/potrf/potrf_U_parallel.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,
HERK_THREAD_UC(&newarg, NULL, NULL, sa, sb, 0);
#else
syrk_thread(mode | BLAS_TRANSA_N | BLAS_TRANSB_T,
&newarg, NULL, NULL, (int (*)(void))HERK_UC, sa, sb, args -> nthreads);
&newarg, NULL, NULL, (int (*)(blas_arg_t *, BLASLONG *, BLASLONG *, FLOAT *, FLOAT *, BLASLONG))HERK_UC, sa, sb, args -> nthreads);
#endif
}
}
Expand Down

0 comments on commit ab387c7

Please sign in to comment.