Merge pull request #4864 from martin-frbg/issue4862

Spell out function prototypes in the SYRK calls of potrf_parallel
This commit is contained in:
Martin Kroeker 2024-08-13 00:16:45 +02:00 committed by GitHub
commit fd52d09490
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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); HERK_THREAD_LN(&newarg, NULL, NULL, sa, sb, 0);
#else #else
syrk_thread(mode | BLAS_TRANSA_N | BLAS_TRANSB_T | BLAS_UPLO, 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 #endif
} }
} }

View File

@ -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); HERK_THREAD_UC(&newarg, NULL, NULL, sa, sb, 0);
#else #else
syrk_thread(mode | BLAS_TRANSA_N | BLAS_TRANSB_T, 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 #endif
} }
} }