Lines Matching +full:- +full:- +full:disable +full:- +full:openmp
3 /** \page TopicMultiThreading Eigen and multi-threading
7 …iple cores present in your hardware. To this end, it is enough to enable OpenMP on your compiler, …
8 * GCC: \c -fopenmp
9 * ICC: \c -openmp
11 You can control the number of thread that will be used using either the OpenMP API or Eigen's API u…
17 Unless setNbThreads has been called, Eigen uses the number of threads specified by OpenMP. You can …
22 You can disable Eigen's multi threading at compile time by defining the EIGEN_DONT_PARALLELIZE prep…
24 Currently, the following algorithms can make use of multi-threading:
25 - general dense matrix - matrix products
26 - PartialPivLU
27 - row-major-sparse * dense vector/matrix products
28 - ConjugateGradient with \c Lower|Upper as the \c UpLo template parameter.
29 - BiCGSTAB with a row-major sparse matrix format.
30 - LeastSquaresConjugateGradient
32 \section TopicMultiThreading_UsingEigenWithMT Using Eigen in a multi-threaded application
46 …reference.com/w/cpp/language/storage_duration#Static_local_variables">thread-safe static local var…
48 …-entrant nor thread-safe. Those include DenseBase::Random(), and DenseBase::setRandom() despite a …
50 In the case your application is parallelized with OpenMP, you might want to disable Eigen's own par…