aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
Commit message (Collapse)AuthorAge
* update has_ReturnType to be more consistent with other has_ helpersGravatar Gael Guennebaud2017-03-17
|
* Merged in ilya-biryukov/eigen/fix_clang_cuda_compilation (pull request PR-304)Gravatar Benoit Steiner2017-03-15
|\ | | | | | | Fixed compilation with cuda-clang
* | better check array index before using itGravatar Gael Guennebaud2017-03-15
| |
* | ARM prefetch fixes: Implement prefetch on ARM64. Do not clobber cc on ARM32.Gravatar Benoit Jacob2017-03-15
| |
| * Fixed compilation with cuda-clangGravatar Ilya Biryukov2017-03-06
|/
* fix typoGravatar Gael Guennebaud2017-03-07
|
* remove UTF8 symbolGravatar Gael Guennebaud2017-03-07
|
* remove UTF8 symbolsGravatar Gael Guennebaud2017-03-07
|
* do not include std header within extern CGravatar Gael Guennebaud2017-03-07
|
* bug #1400: fix stableNorm with EIGEN_DONT_ALIGN_STATICALLYGravatar Gael Guennebaud2017-03-07
|
* Adjusted the EIGEN_DEVICE_FUNC qualifiers to make sure that:Gravatar Benoit Steiner2017-03-01
| | | | | * they're used consistently between the declaration and the definition of a function * we avoid calling host only methods from host device methods.
* Added missing EIGEN_DEVICE_FUNC qualifiersGravatar Benoit Steiner2017-03-01
|
* Added missing EIGEN_DEVICE_FUNC qualifiersGravatar Benoit Steiner2017-02-28
|
* Made most of the packet math primitives usable within CUDA kernel when ↵Gravatar Benoit Steiner2017-02-28
| | | | compiling with clang
* Added missing EIGEN_DEVICE_FUNC qualifiersGravatar Benoit Steiner2017-02-28
|
* Added missing EIGEN_DEVICE_FUNC qualifiersGravatar Benoit Steiner2017-02-28
|
* Added missing EIGEN_DEVICE_FUNCGravatar Benoit Steiner2017-02-28
|
* Deleted extra: EIGEN_DEVICE_FUNC: the QR and Cholesky code isn't ready to ↵Gravatar Benoit Steiner2017-02-28
| | | | run on GPU yet.
* Added missing EIGEN_DEVICE_FUNC qualifiersGravatar Benoit Steiner2017-02-28
|
* Added missing EIGEN_DEVICE_FUNC qualifiersGravatar Benoit Steiner2017-02-28
|
* Added missing EIGEN_DEVICE_FUNC qualifiersGravatar Benoit Steiner2017-02-28
|
* bug #1396: add some missing EIGEN_DEVICE_FUNCGravatar Gael Guennebaud2017-02-28
|
* Added missing EIGEN_DEVICE_FUNC to the SelfCwise binary opsGravatar Benoit Steiner2017-02-27
|
* Added missing EIGEN_DEVICE_FUNC qualifiers to several nullary op methods.Gravatar Benoit Steiner2017-02-27
|
* Declared the plset, ploadt_ro, and ploaddup packet primitives as usable ↵Gravatar Benoit Steiner2017-02-27
| | | | within a gpu kernel
* Added missing EIGEN_DEVICE_FUNC qualifiers.Gravatar Benoit Steiner2017-02-27
|
* Added EIGEN_DEVICE_FUNC to make the prototype of the EigenBase override ↵Gravatar Benoit Steiner2017-02-27
| | | | match that of DenseBase
* Avoid unecessary float to double conversions.Gravatar Benoit Steiner2017-02-27
|
* bug #1394: fix compilation of SelfAdjointEigenSolver<Matrix>(sparse*sparse);Gravatar Gael Guennebaud2017-02-20
|
* bug #1395: fix the use of compile-time vectors as inputs of JacobiSVD.Gravatar Gael Guennebaud2017-02-20
|
* Silent warning.Gravatar Gael Guennebaud2017-02-20
|
* Fix usage of CUDACC_VERGravatar Gael Guennebaud2017-02-20
|
* Fix tracking of temporaries in unit testsGravatar Gael Guennebaud2017-02-19
|
* Use int32_t instead of int in NEON code. Some platforms with 16 bytes int ↵Gravatar Gael Guennebaud2017-02-17
| | | | supports ARM NEON.
* bug #1393: enable Matrix/Array explicit ctor from types with conversion ↵Gravatar Gael Guennebaud2017-02-17
| | | | operators (was ok with 3.2)
* Merged eigen/eigen into defaultGravatar Benoit Steiner2017-02-14
|\
| * Fall back is_integral to std::is_integral in c++11Gravatar Gael Guennebaud2017-02-13
| |
| * Fix vector indexing with uint64_tGravatar Jonathan Hseu2017-02-11
| |
| * bug #1391: include IO.h before DenseBase to enable its usage in DenseBase ↵Gravatar Gael Guennebaud2017-02-13
| | | | | | | | plugins.
| * Workaround some gcc 4.7 warningsGravatar Gael Guennebaud2017-02-11
| |
| * bug #1392: fix #include <Eigen/Sparse> with mpl2-onlyGravatar Gael Guennebaud2017-02-11
| |
| * Forgot to include a file in previous commitGravatar Gael Guennebaud2017-02-11
| |
| * Worakound gcc 4.7 issue in c++11.Gravatar Gael Guennebaud2017-02-11
| |
| * Fix previous commits: disbale only problematic indexed view methods for old ↵Gravatar Gael Guennebaud2017-02-11
| | | | | | | | | | | | compilers instead of disabling everything. Tested with gcc 4.7 (c++03) and gcc 4.8 (c++03 & c++11)
* | Merged eigen/eigen into defaultGravatar Benoit Steiner2017-02-10
|\|
| * Fixed bug introduced in previous commitGravatar Benoit Steiner2017-02-10
| |
* | Pulled latest updates from upstreamGravatar Benoit Steiner2017-02-10
|\|
| * Added a new EIGEN_HAS_INDEXED_VIEW define that set to 0 for older compilers ↵Gravatar Benoit Steiner2017-02-10
| | | | | | | | | | | | | | that are known to fail to compile the indexed views (I used the define from the indexed_views.cpp test). Only include the indexed view methods when the compiler supports the code. This makes it possible to use Eigen again in complex code bases such as TensorFlow and older compilers such as gcc 4.8
| * Fix prunning in (sparse*sparse).pruned() when the result is nearly dense.Gravatar Gael Guennebaud2017-02-10
| |
| * Include clang in the list of non strict MSVC (just to be sure)Gravatar Gael Guennebaud2017-02-10
| |