aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-03-05 10:45:29 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-03-05 10:45:29 +0100
commit5f172cd01f8e4adb790977b4ea5b9da660ca790e (patch)
tree54136a74cae90b1c057b959a7e3da162edd710f6 /Eigen/src/Core/products
parent48d0595c29eef24ef98b82d23ed075de4819e39c (diff)
add a FIXME
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/Parallelizer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/src/Core/products/Parallelizer.h b/Eigen/src/Core/products/Parallelizer.h
index 304dc7ed0..6e15e0ff5 100644
--- a/Eigen/src/Core/products/Parallelizer.h
+++ b/Eigen/src/Core/products/Parallelizer.h
@@ -51,6 +51,7 @@ void ei_parallelize_gemm(const Functor& func, int rows, int cols)
// - the sizes are large enough
// 1- are we already in a parallel session?
+ // FIXME omp_get_num_threads()>1 only works for openmp, what if the user does not use openmp?
if((!Condition) || (omp_get_num_threads()>1))
return func(0,rows, 0,cols);