Update trmv_U.c

This commit is contained in:
Martin Kroeker 2018-09-21 08:23:05 +02:00 committed by GitHub
parent a2fb50edbc
commit 3ba26743ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

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 */ /*FIXME the GEMV unrolling performed here was found to be broken, see issue 1332 */
/* Multiplying DTB size by 1e9 is just a quick-and-dirty hack to disable it for now */ /* Multiplying DTB size by 1e6 is just a quick-and-dirty hack to disable it for now */
for (is = 0; is < m; is += DTB_ENTRIES * 1000000000){ for (is = 0; is < m; is += DTB_ENTRIES * 1000000){
min_i = MIN(m - is, DTB_ENTRIES * 1000000000); min_i = MIN(m - is, DTB_ENTRIES * 1000000);
#ifndef TRANSA #ifndef TRANSA
if (is > 0){ if (is > 0){