aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Eamon Nerbonne <eamon@nerbonne.org>2010-03-02 12:08:49 +0100
committerGravatar Eamon Nerbonne <eamon@nerbonne.org>2010-03-02 12:08:49 +0100
commit3efb3cc828b70e2b565fd100a2cd736922689136 (patch)
treebd32b00fa4dd1e4aceb2b4c14c9a88e9185737c6 /Eigen/src/Core/Product.h
parentc7828ac45c151caad4afdbe6fc26ca989fef4337 (diff)
Changed product type selector to fix perf regression.
Diffstat (limited to 'Eigen/src/Core/Product.h')
-rw-r--r--Eigen/src/Core/Product.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Product.h b/Eigen/src/Core/Product.h
index 236e4f130..5577cb3bc 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -96,7 +96,7 @@ template<> struct ei_product_type_selector<Large, Small, 1>
template<> struct ei_product_type_selector<1, Large,Small> { enum { ret = GemvProduct }; };
template<> struct ei_product_type_selector<1, Large,Large> { enum { ret = GemvProduct }; };
template<> struct ei_product_type_selector<1, Small,Large> { enum { ret = CoeffBasedProductMode }; };
-template<> struct ei_product_type_selector<Large,1, Small> { enum { ret = GemvProduct }; };
+template<> struct ei_product_type_selector<Large,1, Small> { enum { ret = CoeffBasedProductMode }; };
template<> struct ei_product_type_selector<Large,1, Large> { enum { ret = GemvProduct }; };
template<> struct ei_product_type_selector<Small,1, Large> { enum { ret = CoeffBasedProductMode }; };
template<> struct ei_product_type_selector<Small,Small,Large> { enum { ret = GemmProduct }; };