aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products/GeneralBlockPanelKernel.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-02-23 18:24:15 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-02-23 18:24:15 +0100
commit022e2f5ef4513750a5b2960ba0e8e825d8f640bb (patch)
treef87a2bfc5de6a401feb4b6b80f1f0af580c5a68a /Eigen/src/Core/products/GeneralBlockPanelKernel.h
parent68eaefa5d4966d0130c64643b0554f05cec1ecf8 (diff)
fix typo
Diffstat (limited to 'Eigen/src/Core/products/GeneralBlockPanelKernel.h')
-rw-r--r--Eigen/src/Core/products/GeneralBlockPanelKernel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/src/Core/products/GeneralBlockPanelKernel.h b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
index dfc92c346..c29e4efc2 100644
--- a/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+++ b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
@@ -50,7 +50,7 @@ struct ei_gebp_kernel
const int peeled_kc = (depth/4)*4;
Scalar* unpackedB = const_cast<Scalar*>(blockB - strideB * nr * PacketSize);
-
+
// loops on each micro vertical panel of rhs (depth x nr)
for(int j2=0; j2<packet_cols; j2+=nr)
{
@@ -193,7 +193,7 @@ struct ei_gebp_kernel
{
PacketType B0, B1, B2, B3, A0, A1;
PacketType T0;
-
+
A0 = ei_pload(&blA[0*PacketSize]);
A1 = ei_pload(&blA[1*PacketSize]);
B0 = ei_pload(&blB[0*PacketSize]);
@@ -516,7 +516,7 @@ struct ei_gebp_kernel
for(int k=0; k<depth; k++)
ei_pstore(&unpackedB[k*PacketSize], ei_pset1(blB[k]));
}
-
+
for(int i=0; i<peeled_mc; i+=mr)
{
const Scalar* blA = &blockA[i*strideA+offsetA*mr];