aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-01-26 23:33:15 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-01-26 23:33:15 +0100
commitcfa21f812339fce7531eb9f27f6d2c5287de661e (patch)
tree4ef71fde24fcd68b122ae7fbd1cc3ba2947ad3a1 /Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
parent6850eab33b71556f62c29ff29bbcdf0240cfd8e2 (diff)
Remove dead code.
Diffstat (limited to 'Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h')
-rw-r--r--Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h b/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
index f80f3b410..2c6798d63 100644
--- a/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
+++ b/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
@@ -71,14 +71,8 @@ struct general_matrix_matrix_triangular_product<Index,LhsScalar,LhsStorageOrder,
RhsMapper rhs(_rhs,rhsStride);
ResMapper res(_res, resStride);
- Index kc = depth; // cache block size along the K direction
- Index mc = size; // cache block size along the M direction
- Index nc = size; // cache block size along the N direction
- computeProductBlockingSizes<LhsScalar,RhsScalar>(kc, mc, nc, 1);
-
- kc = blocking.kc();
- mc = (std::min)(size,blocking.mc());
- nc = (std::min)(size,blocking.nc());
+ Index kc = blocking.kc();
+ Index mc = (std::min)(size,blocking.mc());
// !!! mc must be a multiple of nr:
if(mc > Traits::nr)