aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Add a note on initParallel being optional in C++11.Gravatar Gael Guennebaud2015-11-23
|
* Improve numerical robustness of some unit testsGravatar Gael Guennebaud2015-11-23
|
* Merged in dr15jones/eigen (pull request PR-146)Gravatar Gael Guennebaud2015-11-22
|\ | | | | | | Use a class constructor to initialize CPU cache sizes
* | Use overload instead of template full specialization to please old MSVCGravatar Gael Guennebaud2015-11-22
| |
* | Make FullPivLU::solve use rank() instead of nonzeroPivots().Gravatar Gael Guennebaud2015-11-21
| |
* | Added option to force the usage of the Eigen array class instead of the ↵Gravatar Benoit Steiner2015-11-20
| | | | | | | | std::array class.
* | Pulled latest updates from trunkGravatar Benoit Steiner2015-11-20
|\ \
* | | Added proper support for fast 64bit integer division on CUDAGravatar Benoit Steiner2015-11-20
| | |
| | * Use a class constructor to initialize CPU cache sizesGravatar Chris Jones2015-11-20
| |/ | | | | | | | | | | | | | | Using a static instance of a class to initialize the values for the CPU cache sizes guarantees thread-safe initialization of the values when using C++11. Therefore under C++11 it is no longer necessary to call Eigen::initParallel() before calling any eigen functions on different threads.
| * Use .data() instead of &coeffRef(0).Gravatar Gael Guennebaud2015-11-20
| |
| * Add regression using test for array<complex>/realGravatar Gael Guennebaud2015-11-20
| |
| * Fix overload instantiation for clangGravatar Gael Guennebaud2015-11-20
| |
| * Workaround msvc broken complex/complex division in unit testGravatar Gael Guennebaud2015-11-20
| |
| * Add missing using statement to enable fast Array<complex> / real operations. ↵Gravatar Gael Guennebaud2015-11-20
| | | | | | | | (was ok for Matrix only)
| * Workaround MSVC missing overloads of std::fpclassify for integral typesGravatar Gael Guennebaud2015-11-20
| |
| * Add is_integral<> type traitsGravatar Gael Guennebaud2015-11-20
| |
| * Fixed another clang compilation warningGravatar Benoit Steiner2015-11-19
| |
| * Fixed compilation warning generated by clangGravatar Benoit Steiner2015-11-19
|/
* Fixed compilation error triggered by nvccGravatar Benoit Steiner2015-11-19
|
* Shard the uint128 testGravatar Benoit Steiner2015-11-19
|
* Cleanup the integer division testGravatar Benoit Steiner2015-11-19
|
* Added support for 128bit integers on CUDA devices.Gravatar Benoit Steiner2015-11-19
|
* Added numeric limits for unsigned integersGravatar Benoit Steiner2015-11-18
|
* Add regression unit test for prod.maxCoeff(i)Gravatar Gael Guennebaud2015-11-18
|
* Avoid using the version of TensorIntDiv optimized for 32-bit integers when ↵Gravatar Benoit Steiner2015-11-18
| | | | the divisor can be equal to one since it isn't supported.
* bug #1115: enable static alignment on ARM outside of old-GCCGravatar Benoit Jacob2015-11-18
|
* Workaround i387 issue in unit testGravatar Gael Guennebaud2015-11-16
|
* Only enable the use of constexpr with nvcc if we're using version 7.5 or aboveGravatar Benoit Steiner2015-11-13
|
* Added sanity checkGravatar Benoit Steiner2015-11-13
|
* Made it possible to compute atan, tanh, sinh and cosh on GPUGravatar Benoit Steiner2015-11-12
|
* Fixed a compilation warningGravatar Benoit Steiner2015-11-12
|
* Fixed a compilation warning triggered by nvccGravatar Benoit Steiner2015-11-12
|
* Fixed a few compilation warningsGravatar Benoit Steiner2015-11-12
|
* Added a couple of missing EIGEN_DEVICE_FUNCGravatar Benoit Steiner2015-11-12
|
* Silenced some compilation warnings triggered by nvccGravatar Benoit Steiner2015-11-12
|
* Fixed a few more typosGravatar Benoit Steiner2015-11-12
|
* Fixed typosGravatar Benoit Steiner2015-11-12
|
* Only enable the use of const expression when nvcc is called with the ↵Gravatar Benoit Steiner2015-11-12
| | | | -std=c++11 option
* Completed the IndexList rewriteGravatar Benoit Steiner2015-11-12
|
* Simplified more of the IndexList code.Gravatar Benoit Steiner2015-11-12
|
* Started to make the IndexList code compile by more compilersGravatar Benoit Steiner2015-11-12
|
* Fixed compilation error with xcode.Gravatar Benoit Steiner2015-11-12
|
* Made it possible to run some of the CXXMeta functions on a CUDA device.Gravatar Benoit Steiner2015-11-12
|
* Moved the array code into it's own file.Gravatar Benoit Steiner2015-11-12
|
* gen_numeric_list takes a size_t, not a intGravatar Benoit Steiner2015-11-12
|
* Fix missing Dynamic versus HugeCost changesGravatar Gael Guennebaud2015-11-12
|
* Update EIGEN_FAST_MATH docGravatar Gael Guennebaud2015-11-12
|
* Don't use std::array when compiling with nvcc since nvidia doesn't support ↵Gravatar Benoit Steiner2015-11-11
| | | | the use of STL containers on GPU.
* Fixed a compilation warningGravatar Benoit Steiner2015-11-11
|
* Make it possible for a vectorized tensor expression to be executed in a CUDA ↵Gravatar Benoit Steiner2015-11-11
| | | | kernel.