Update trsv_L.c

This commit is contained in:
Martin Kroeker 2022-06-19 17:16:00 +02:00 committed by GitHub
parent 451993e8a9
commit 85657fc3a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -45,7 +45,11 @@ const static FLOAT dm1 = -1.;
#undef GEMV_UNROLL
#define GEMV_UNROLL DTB_ENTRIES
int __attribute__((visibility("hidden"))) CNAME(BLASLONG m, FLOAT *a, BLASLONG lda, FLOAT *b, BLASLONG incb, void *buffer){
int
#ifndef MSVC
__attribute__((visibility("hidden")))
#endif
CNAME(BLASLONG m, FLOAT *a, BLASLONG lda, FLOAT *b, BLASLONG incb, void *buffer){
BLASLONG i, is, min_i;
FLOAT *gemvbuffer = (FLOAT *)buffer;