From 3ba26743ee3bc66aab32b4d5177a4e84789ea454 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Fri, 21 Sep 2018 08:23:05 +0200 Subject: [PATCH] Update trmv_U.c --- driver/level2/trmv_U.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/driver/level2/trmv_U.c b/driver/level2/trmv_U.c index 642365e9c..d3a100e3d 100644 --- a/driver/level2/trmv_U.c +++ b/driver/level2/trmv_U.c @@ -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 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 if (is > 0){