Browse Source

Update trsv_U.c

pull/3658/head
Martin Kroeker GitHub 3 years ago
parent
commit
e10802018d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      driver/level2/trsv_U.c

+ 5
- 1
driver/level2/trsv_U.c View File

@@ -42,7 +42,11 @@

const static FLOAT dm1 = -1.;

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;


Loading…
Cancel
Save