aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* typosGravatar Gael Guennebaud2017-02-21
|
* mergeGravatar Gael Guennebaud2017-02-21
|\
* | Improve documentation of reshapedGravatar Gael Guennebaud2017-02-21
| |
* | Fix linking issue.Gravatar Gael Guennebaud2017-02-21
| |
* | Add support for automatic-size deduction in reshaped, e.g.:Gravatar Gael Guennebaud2017-02-21
| | | | | | | | mat.reshaped(4,AutoSize); <-> mat.reshaped(4,mat.size()/4);
* | Add missing const version of mat(all).Gravatar Gael Guennebaud2017-02-21
| |
* | Fix long to int conversionGravatar Gael Guennebaud2017-02-21
| |
* | Add support for mat(all) as an alias to mat.reshaped(mat.size(),fix<1>);Gravatar Gael Guennebaud2017-02-21
| |
| * bug #1394: fix compilation of SelfAdjointEigenSolver<Matrix>(sparse*sparse);Gravatar Gael Guennebaud2017-02-20
| |
| * bug #1380: for Map<> as input of matrix exponentialGravatar Gael Guennebaud2017-02-20
| |
| * bug #1395: fix the use of compile-time vectors as inputs of JacobiSVD.Gravatar Gael Guennebaud2017-02-20
| |
* | Add support for RowOrder reshapedGravatar 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
| |
| * Fix compilation.Gravatar Gael Guennebaud2017-02-18
| |
| * 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)
| * Size indices are signed.Gravatar Benoit Steiner2017-02-16
| |
| * Merged eigen/eigen into defaultGravatar Benoit Steiner2017-02-14
| |\
| * | Adding TensorChippingOP for sycl backend; fixing the index value in the ↵Gravatar Mehdi Goli2017-02-13
| | | | | | | | | | | | verification operation for cxx11_tensorChipping.cpp test
| | * Fall back is_integral to std::is_integral in c++11Gravatar Gael Guennebaud2017-02-13
| | |
| | * Fix overflow and make use of long long in c++11 only.Gravatar 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
| | |
* | | Fallback Reshaped to MapBase when possible (same storage order and linear ↵Gravatar Gael Guennebaud2017-02-11
| | | | | | | | | | | | access to the nested expression)
* | | Use Eigen::fix<N> to pass compile-time sizes.Gravatar 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
| | |
| | * fixed inlining issue with clang-cl on visual studioGravatar Alexander Neumann2017-02-08
| | | | | | | | | | | | | | | (grafted from 7962ac1a5855e8b7a60d5d90e61365b71f5501a5 )
| | * Improve multi-threading heuristic for matrix products with a small number of ↵Gravatar Gael Guennebaud2017-02-07
| | | | | | | | | | | | columns.
| * | Adding mean to TensorReductionSycl.hGravatar Mehdi Goli2017-02-07
| | |
| * | Fixing TensorReductionSycl for min and max.Gravatar Mehdi Goli2017-02-06
| | |
| | * bug #1389: MSVC's std containers do not properly align in 64 bits mode if ↵Gravatar Gael Guennebaud2017-02-03
| | | | | | | | | | | | the requested alignment is larger than 16 bytes (e.g., with AVX)
| * | Reducing the warnings in Sycl backend.Gravatar Mehdi Goli2017-02-02
| | |
| | * Silenced several compilation warningsGravatar Benoit Steiner2017-02-01
| | |
| | * fixed the ordering of the template and EIGEN_DEVICE_FUNC keywords in a few ↵Gravatar Benoit Steiner2017-02-01
| | | | | | | | | | | | more places to get more of the Eigen codebase to compile with nvcc again.
| | * Replaced EIGEN_DEVICE_FUNC template<foo> with template<foo> ↵Gravatar Benoit Steiner2017-02-01
| | | | | | | | | | | | EIGEN_DEVICE_FUNC to make the code compile with nvcc8.
| | * Disable a part of the unit test for gcc 4.8Gravatar Gael Guennebaud2017-02-01
| | |
| | * Define EIGEN_COMP_GNUC to reflect version number: 47, 48, 49, 50, 60, ...Gravatar Gael Guennebaud2017-02-01
| | |
| * | Converting ptrdiff_t type to int64_t type in cxx11_tensor_contract_sycl.cpp ↵Gravatar Mehdi Goli2017-02-01
| | | | | | | | | | | | in order to be the same as other tests.