aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-02-27 17:24:42 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-02-27 17:24:42 +0100
commit78b2c7e16e2ee0e3ef12f9d203f5d34f9e4cb72e (patch)
tree12a529e80263841ddf7c9fa005de51bd86b9a911 /Eigen/src/Core/products
parent3f393490adc2e5ca705b660ffac3465e8200ff5d (diff)
Fixed a typo.
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/GeneralBlockPanelKernel.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Eigen/src/Core/products/GeneralBlockPanelKernel.h b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
index 18e913b0e..237f5ca17 100644
--- a/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+++ b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
@@ -75,8 +75,8 @@ struct ei_gebp_kernel
if(nr==4) C7 = ei_ploadu(&res[(j2+3)*resStride + i + PacketSize]);
// performs "inner" product
- // TODO let's check wether the flowing peeled loop could not be
- // optimized via optimal prefetching from one loop to the other
+ // TODO let's check whether the flowing peeled loop could not be
+ // optimized via optimal pre-fetching from one loop to the other
const Scalar* blB = &blockB[j2*strideB*PacketSize+offsetB*nr];
for(int k=0; k<peeled_kc; k+=4)
{
@@ -184,6 +184,7 @@ struct ei_gebp_kernel
if(nr==4) { CJMADD(A1,B2,C6,T1); }
if(nr==4) { CJMADD(A0,B3,C3,T0); }
if(nr==4) { CJMADD(A1,B3,C7,T1); }
+
}
blB += 4*nr*PacketSize;