aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Fix unit test.Gravatar Gael Guennebaud2016-06-03
|
* Fix compilation.Gravatar Gael Guennebaud2016-06-03
|
* Fix compilation: Matrix does not indirectly live in the internal namespace ↵Gravatar Gael Guennebaud2016-06-03
| | | | anymore!
* Fix function dependenciesGravatar Gael Guennebaud2016-06-03
|
* Align the first element of the Waiter struct instead of padding it. This ↵Gravatar Benoit Steiner2016-06-02
| | | | reduces its memory footprint a bit while achieving the goal of preventing false sharing
* mergeGravatar Gael Guennebaud2016-06-02
|\
* | Remove dead code.Gravatar Gael Guennebaud2016-06-02
| |
* | Implement generic scalar*expr and expr*scalar operator based on ↵Gravatar Gael Guennebaud2016-06-02
| | | | | | | | | | | | scalar_product_traits. This is especially useful for custom scalar types, e.g., to enable float*expr<multi_prec> without conversion.
| * Add syntactic sugar to Eigen tensors to allow more natural syntax.Gravatar Rasmus Munk Larsen2016-06-02
| | | | | | | | | | | | | | | | | | Specifically, this enables expressions involving: scalar + tensor scalar * tensor scalar / tensor scalar - tensor
| * Merged in ibab/eigen (pull request PR-189)Gravatar Benoit Steiner2016-06-02
|/| | | | | | | Add scan op to Tensor module
* | bug #1193: fix lpNorm<Infinity> for empty input.Gravatar Gael Guennebaud2016-06-02
| |
* | Disable MSVC's "decorated name length exceeded, name was truncated" warning ↵Gravatar Gael Guennebaud2016-06-02
| | | | | | | | in unit tests.
* | Fix pointer to long conversion warning.Gravatar Gael Guennebaud2016-06-02
| |
| * Add tensor scan opGravatar Igor Babuschkin2016-06-02
|/ | | | | This is the initial implementation a generic scan operation. Based on this, cumsum and cumprod method have been added to TensorBase.
* Use a single PacketSize variableGravatar Benoit Steiner2016-06-01
|
* Fixed compilation warningGravatar Benoit Steiner2016-06-01
|
* Speedup a testGravatar Benoit Steiner2016-06-01
|
* Doc: add some cross references (also fix empty macro argument warning)Gravatar Gael Guennebaud2016-06-01
|
* Silenced compilation warning generated by nvcc.Gravatar Benoit Steiner2016-06-01
|
* Added support for mean reductions on fp16Gravatar Benoit Steiner2016-06-01
|
* Doc: start of a table summarizing coefficient-wise math functions.Gravatar Gael Guennebaud2016-06-01
|
* Add missing ArrayBase::log1pGravatar Gael Guennebaud2016-06-01
|
* Expose log1p to Array.Gravatar Gael Guennebaud2016-06-01
|
* Doc: makes the global unary math functions visible to doxygen (and docuement ↵Gravatar Gael Guennebaud2016-06-01
| | | | them)
* Doc: improve documentation of Map<SparseMatrix>Gravatar Gael Guennebaud2016-06-01
|
* Doc: disable inlining of inherited members, workaround Doxygen's limited C++ ↵Gravatar Gael Guennebaud2016-06-01
| | | | parsing abilities, and improve doc of MapBase.
* Pulled latest updates from trunkGravatar Benoit Steiner2016-05-31
|\
* | Only enable optimized reductions of fp16 if the reduction functor supports themGravatar Benoit Steiner2016-05-31
| |
* | Improved support for CUDA 8.0Gravatar Benoit Steiner2016-05-31
| |
| * bug #1181: help MSVC inlining.Gravatar Gael Guennebaud2016-05-31
| |
| * Fix compilation with old iccGravatar Gael Guennebaud2016-05-31
| |
| * bug #1238: fix SparseMatrix::sum() overload for un-compressed mode.Gravatar Gael Guennebaud2016-05-31
|/
* Silenced some compilation warnings triggered by nvcc 8.0Gravatar Benoit Steiner2016-05-27
|
* Reimplement clamp as a static function.Gravatar Benoit Steiner2016-05-27
|
* Use NULL instead of nullptr to preserve the compatibility with cxx03Gravatar Benoit Steiner2016-05-27
|
* Added a new operation to enable more powerful tensorindexing.Gravatar Benoit Steiner2016-05-27
|
* Fixed option '--relaxed-constexpr' has been deprecated and replaced by ↵Gravatar Benoit Steiner2016-05-27
| | | | option '--expt-relaxed-constexpr' warning generated by nvcc 7.5
* Disable the use of MMX instructions since the code is broken on many platformsGravatar Benoit Steiner2016-05-27
|
* Cleaner implementation of dont_over_optimize.Gravatar Christoph Hertzberg2016-05-27
|
* Fix compilation when defaulting to row-majorGravatar Gael Guennebaud2016-05-27
|
* Fix compilation with old ICC version (use C99 types instead of C++11 ones)Gravatar Gael Guennebaud2016-05-27
|
* Fixed some compilation warningsGravatar Benoit Steiner2016-05-26
|
* Deleted extra namespaceGravatar Benoit Steiner2016-05-26
|
* Preserve the ability to vectorize the evaluation of an expression even when ↵Gravatar Benoit Steiner2016-05-26
| | | | it involves a cast that isn't vectorized (e.g fp16 to float)
* Resolved merge conflictsGravatar Benoit Steiner2016-05-26
|
* Merged latest reduction improvementsGravatar Benoit Steiner2016-05-26
|\
* \ Merged latest code improvementsGravatar Benoit Steiner2016-05-26
|\ \
| * | Improved the performance of inner reductions.Gravatar Benoit Steiner2016-05-26
| | |
| * | Improved the coverage of the fp16 reduction testsGravatar Benoit Steiner2016-05-26
| | |
* | | bug #1237: Redefine eigen_assert instead of disabling assertions for ↵Gravatar Christoph Hertzberg2016-05-26
| | | | | | | | | | | | documentation snippets