Skip to content

Commit

Permalink
Give cblas_ssyrk a return type
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesjer committed Nov 13, 2023
1 parent ee1bbde commit 2cd3a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fflas-ffpack/config-blas.h
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ extern "C" {
sgemm_ ( EXT_BLAS_TRANSPOSE(TransA), EXT_BLAS_TRANSPOSE(TransB), &M, &N, &K, &alpha, A, &lda, B, &ldb, &beta, C, &ldc);
}

static inline cblas_ssyrk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo,
static inline void cblas_ssyrk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo,
const enum CBLAS_TRANSPOSE Trans, const int N, const int K,
const float alpha, const float *A, const int lda,
const float beta, float *C, const int ldc){
Expand Down

0 comments on commit 2cd3a04

Please sign in to comment.