aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-03-01 13:34:44 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-03-01 13:34:44 +0100
commit65eba35f98941a1d5c7ff6f854ed17224ef65b40 (patch)
treee24fd3d62fd4d577c7cc8386ea95e551344d1c4d
parent1710c07f63aa4be8d3ef11e2b4977ce7fe545948 (diff)
rm useless omp shared directive
-rw-r--r--Eigen/src/Core/products/Parallelizer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/products/Parallelizer.h b/Eigen/src/Core/products/Parallelizer.h
index 404b8d390..439ce1565 100644
--- a/Eigen/src/Core/products/Parallelizer.h
+++ b/Eigen/src/Core/products/Parallelizer.h
@@ -121,7 +121,7 @@ void ei_run_parallel_gemm(const Functor& func, int rows, int cols)
GemmParallelInfo* info = new GemmParallelInfo[threads];
- #pragma omp parallel for schedule(static,1) shared(info)
+ #pragma omp parallel for schedule(static,1)
for(int i=0; i<threads; ++i)
{
int r0 = i*blockRows;