aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/TopicMultithreading.dox
Commit message (Collapse)AuthorAge
* Mention problems when using potentially throwing scalars and OpenMPGravatar David Tellenbach2020-10-09
|
* Improve doc on multi-threading and warn about hyper-threadingGravatar Gael Guennebaud2018-11-14
|
* MIsc. source and comment typosGravatar luz.paz2018-03-11
| | | | Found using `codespell` and `grep` from downstream FreeCAD
* Add a note on initParallel being optional in C++11.Gravatar Gael Guennebaud2015-11-23
|
* Fixed a spelling errorGravatar ITimer2015-08-10
|
* Doc: explain perf and multithreading issues in sparse iterative solversGravatar Gael Guennebaud2015-06-26
|
* small typoGravatar Christoph Hertzberg2015-05-04
|
* [Doc] Multi-threading fixGravatar michiel van dyck2015-05-04
| | | | | | | | | | | | | 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
* Fix typo and formatingGravatar Gael Guennebaud2014-03-07
|
* Document the fact that Random and setRandom are not reentrant (so not ↵Gravatar Gael Guennebaud2014-01-07
| | | | thread-safe)
* bug #466: better fix for the race condition: this new patch add an ↵Gravatar Gael Guennebaud2012-06-14
initParallel() function which must be called at the initialization time of any multi-threaded application calling Eigen from multiple threads.