Skip to content

Commit

Permalink
fix improper function prototypes (empty parentheses)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Sep 30, 2023
1 parent f4f31fb commit 1d4aa8d
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 @@ -110,7 +110,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,
newarg.b = a + (i + bk + i * lda) * COMPSIZE;

gemm_thread_m(mode | BLAS_RSIDE | BLAS_TRANSA_T | BLAS_UPLO,
&newarg, NULL, NULL, (int (*)(void))TRSM_RCLN, sa, sb, args -> nthreads);
&newarg, NULL, NULL, (int (*)(blas_arg_t *, BLASLONG *, BLASLONG *, FLOAT *, FLOAT *, BLASLONG))TRSM_RCLN, sa, sb, args -> nthreads);

newarg.n = n - i - bk;
newarg.k = bk;
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 @@ -110,7 +110,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,
newarg.b = a + (i + (i + bk) * lda) * COMPSIZE;

gemm_thread_n(mode | BLAS_TRANSA_T,
&newarg, NULL, NULL, (int (*)(void))TRSM_LCUN, sa, sb, args -> nthreads);
&newarg, NULL, NULL, (int (*)(blas_arg_t *, BLASLONG *, BLASLONG *, FLOAT *, FLOAT *, BLASLONG))TRSM_LCUN, sa, sb, args -> nthreads);

newarg.n = n - i - bk;
newarg.k = bk;
Expand Down

0 comments on commit 1d4aa8d

Please sign in to comment.