Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CBLAS/include/cblas_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void cblas_zcopy_64(const int64_t N, const void *X, const int64_t incX,
void *Y, const int64_t incY);
void cblas_zaxpy_64(const int64_t N, const void *alpha, const void *X,
const int64_t incX, void *Y, const int64_t incY);
void cblas_zaxbpy_64(const int64_t N, const void *alpha, const void *X,
void cblas_zaxpby_64(const int64_t N, const void *alpha, const void *X,
const int64_t incX, const void *beta, void *Y, const int64_t incY);


Expand Down
Loading