Browse Source

Merge pull request #4864 from martin-frbg/issue4862

Spell out function prototypes in the SYRK calls of potrf_parallel
tags/v0.3.29
Martin Kroeker GitHub 1 year ago
parent
commit
fd52d09490
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      lapack/potrf/potrf_L_parallel.c
  2. +1
    -1
      lapack/potrf/potrf_U_parallel.c

+ 1
- 1
lapack/potrf/potrf_L_parallel.c 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);
#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
}
}


+ 1
- 1
lapack/potrf/potrf_U_parallel.c 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);
#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
}
}


Loading…
Cancel
Save