From 84ad8ce7e30e26eb235906cd569d1f2b7f3798c5 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 17 Jul 2014 12:00:56 +0200 Subject: Fix bug #770: workaround thread safety in mpreal --- unsupported/Eigen/MPRealSupport | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'unsupported/Eigen/MPRealSupport') diff --git a/unsupported/Eigen/MPRealSupport b/unsupported/Eigen/MPRealSupport index 6a65a601b..de4f11934 100644 --- a/unsupported/Eigen/MPRealSupport +++ b/unsupported/Eigen/MPRealSupport @@ -146,8 +146,8 @@ int main() }; }; - template - struct gebp_kernel + template + struct gebp_kernel { typedef mpfr::mpreal mpreal; @@ -155,34 +155,34 @@ int main() void operator()(mpreal* res, Index resStride, const mpreal* blockA, const mpreal* blockB, Index rows, Index depth, Index cols, mpreal alpha, Index strideA=-1, Index strideB=-1, Index offsetA=0, Index offsetB=0) { - mpreal acc1, tmp; + mpreal acc1(0,mpfr_get_prec(blockA[0].mpfr_srcptr())), + tmp (0,mpfr_get_prec(blockA[0].mpfr_srcptr())); if(strideA==-1) strideA = depth; if(strideB==-1) strideB = depth; - for(Index j=0; j)(nr,cols-j); - mpreal *C1 = res + j*resStride; - for(Index i=0; i(blockB) + j*strideB + offsetB*actual_nr; - mpreal *A = const_cast(blockA) + i*strideA + offsetA; + mpreal *C1 = res + j*resStride; + + const mpreal *A = blockA + i*strideA + offsetA; + const mpreal *B = blockB + j*strideB + offsetB; + acc1 = 0; for(Index k=0; k