From 11329f49f468690e2543f074b6740f5b616f4241 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 3 Jul 2010 19:39:29 +0200 Subject: suppress warning and add a fixme about this transpose argument --- Eigen/src/Core/products/Parallelizer.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Eigen') diff --git a/Eigen/src/Core/products/Parallelizer.h b/Eigen/src/Core/products/Parallelizer.h index f307812bf..b13c0706e 100644 --- a/Eigen/src/Core/products/Parallelizer.h +++ b/Eigen/src/Core/products/Parallelizer.h @@ -84,6 +84,11 @@ template void ei_parallelize_gemm(const Functor& func, Index rows, Index cols, bool transpose) { #ifndef EIGEN_HAS_OPENMP + // FIXME the transpose variable is only needed to properly split + // the matrix product when multithreading is enabled. This is a temporary + // fix to support row-major destination matrices. This whole + // parallelizer mechanism has to be redisigned anyway. + EIGEN_UNUSED_VARIABLE(transpose); func(0,rows, 0,cols); #else -- cgit v1.2.3