aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/TopicMultithreading.dox
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-03-07 23:13:14 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-03-07 23:13:14 +0100
commit72461be96227341053abe7c95de366545e2884ed (patch)
treea254c6160361c97530174019f205b67164024352 /doc/TopicMultithreading.dox
parent33ca9b4ee690ed12bd072273ea0d24c5eaae77fd (diff)
Fix typo and formating
Diffstat (limited to 'doc/TopicMultithreading.dox')
-rw-r--r--doc/TopicMultithreading.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/TopicMultithreading.dox b/doc/TopicMultithreading.dox
index fb944af29..ba5e26290 100644
--- a/doc/TopicMultithreading.dox
+++ b/doc/TopicMultithreading.dox
@@ -39,7 +39,7 @@ int main(int argc, char** argv)
}
\endcode
-\warning note that all functions generating random matrices are \b not re-entrant nor thread-safe. Those include DenseBase::Random(), and DenseBase::setRandom() despite a call to Eigen::initParallel(). This is because these functions are based on std::rand which is not re-entrant. For thread-safe random generator, we recommend the use of boost::random of c++11 random feature.
+\warning note that all functions generating random matrices are \b not re-entrant nor thread-safe. Those include DenseBase::Random(), and DenseBase::setRandom() despite a call to Eigen::initParallel(). This is because these functions are based on std::rand which is not re-entrant. For thread-safe random generator, we recommend the use of boost::random or c++11 random feature.
In the case your application is parallelized with OpenMP, you might want to disable Eigen's own parallization as detailed in the previous section.