From 4b9eddaef82546ede12ceb549096e978b93e791c Mon Sep 17 00:00:00 2001 From: michiel van dyck Date: Mon, 4 May 2015 14:48:52 +0000 Subject: [Doc] Multi-threading fix OLD: n = Eigen::nbThreads( n ); NEW: n = Eigen::nbThreads( ); from: You can query the number of threads that will be used with: \code n = Eigen::nbThreads( ); \endcode Kr Michiel --- doc/TopicMultithreading.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/TopicMultithreading.dox') diff --git a/doc/TopicMultithreading.dox b/doc/TopicMultithreading.dox index ba5e26290..ba3547143 100644 --- a/doc/TopicMultithreading.dox +++ b/doc/TopicMultithreading.dox @@ -17,7 +17,7 @@ You can control the number of thread that will be used using either the OpenMP A Unless setNbThreads has been called, Eigen uses the number of threads specified by OpenMP. You can restore this bahavior by calling \code setNbThreads(0); \endcode You can query the number of threads that will be used with: \code -n = Eigen::nbThreads(n); +n = Eigen::nbThreads( ); \endcode You can disable Eigen's multi threading at compile time by defining the EIGEN_DONT_PARALLELIZE preprocessor token. -- cgit v1.2.3