Browse Source

Try harder at disabling gemv_n unrolling

for #1748
pull/1768/head
Martin Kroeker GitHub 7 years ago
parent
commit
a2fb50edbc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      driver/level2/trmv_U.c

+ 3
- 3
driver/level2/trmv_U.c View File

@@ -55,11 +55,11 @@ int CNAME(BLASLONG m, FLOAT *a, BLASLONG lda, FLOAT *b, BLASLONG incb, FLOAT *bu
}

/*FIXME the GEMV unrolling performed here was found to be broken, see issue 1332 */
/* Multiplying DTB size by 100 is just a quick-and-dirty hack to disable it for now[B */
/* Multiplying DTB size by 1e9 is just a quick-and-dirty hack to disable it for now */

for (is = 0; is < m; is += DTB_ENTRIES * 100){
for (is = 0; is < m; is += DTB_ENTRIES * 1000000000){

min_i = MIN(m - is, DTB_ENTRIES * 100);
min_i = MIN(m - is, DTB_ENTRIES * 1000000000);

#ifndef TRANSA
if (is > 0){


Loading…
Cancel
Save