Skip to content

Commit

Permalink
swap argument names (thx to Martin Strunz)
Browse files Browse the repository at this point in the history
  • Loading branch information
uecker committed Jul 15, 2024
1 parent bac1d48 commit e5ce197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/num/blas.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ extern void blas_csyrk(char uplow, char trans, long N, long K, _Complex float al

extern void blas_matrix_multiply(long M, long N, long K, _Complex float C[N][M], const _Complex float A[K][M], const _Complex float B[N][K]);

extern void blas_matrix_zfmac(long M, long K, long N, _Complex float* C, const _Complex float* A, char transa, const _Complex float* B, char transb);
extern void blas_matrix_zfmac(long M, long N, long K, _Complex float* C, const _Complex float* A, char transa, const _Complex float* B, char transb);
extern void blas_gemv_zfmac(long M, long N, _Complex float* y, const _Complex float* A, char trans, const _Complex float* x);
extern void blas_gemv_fmac(long M, long N, float* y, const float* A, char trans, const float* x);
extern void blas_sger_fmac(long M, long N, float* A, const float* x, const float* y);

0 comments on commit e5ce197

Please sign in to comment.