aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Make CMake config file relocatableGravatar Silvio Traversaro2016-12-05
|
* fix compilation of BTL's blaze interfaceGravatar Gael Guennebaud2016-12-05
|
* Add performance monitoring for LLTGravatar Gael Guennebaud2016-12-05
|
* use numext::absGravatar Angelos Mantzaflaris2016-12-02
| | | | | (grafted from 0a08d4c60b652d1f24b2fa062c818c4b93890c59 )
* 1. Add explicit template to abs2 (resolves deduction for some arithmetic types)Gravatar Angelos Mantzaflaris2016-12-02
| | | | | | 2. Avoid signed-unsigned conversion in comparison (warning in case Scalar is unsigned) (grafted from 4086187e49760d4bde72750dfa20ae9451263417 )
* Fix memory leak in Ref<Sparse>Gravatar Gael Guennebaud2016-12-05
|
* Optimize SparseLU::solve for rhs vectorsGravatar Gael Guennebaud2016-12-05
|
* remove temporary in SparseLU::solveGravatar Gael Guennebaud2016-12-05
|
* bug #1356: fix calls to evaluator::coeffRef(0,0) to get the address of the ↵Gravatar Gael Guennebaud2016-12-05
| | | | | | destination by adding a dstDataPtr() member to the kernel. This fixes undefined behavior if dst is empty (nullptr).
* typoGravatar Gael Guennebaud2016-12-05
|
* extend monitoring benchmarks with transpose matrix-vector and triangular ↵Gravatar Gael Guennebaud2016-12-05
| | | | matrix-vectors.
* Improve performance of row-major-dense-matrix * vector products for recent CPUs.Gravatar Gael Guennebaud2016-12-05
| | | | | This revised version does not bother about aligned loads/stores, and rather processes 8 rows at ones for better instruction pipelining.
* Clean debugging codeGravatar Gael Guennebaud2016-12-05
|
* Merged in srvasude/eigen (pull request PR-265)Gravatar Benoit Steiner2016-12-05
|\ | | | | | | Add Expm1 support to Eigen.
* | Add missing generic load methods.Gravatar Gael Guennebaud2016-12-03
| |
* | Complete rewrite of column-major-matrix * vector product to deliver higher ↵Gravatar Gael Guennebaud2016-12-03
| | | | | | | | | | | | | | | | | | | | performance of modern CPU. The previous code has been optimized for Intel core2 for which unaligned loads/stores were prohibitively expensive. This new version exhibits much higher instruction independence (better pipelining) and explicitly leverage FMA. According to my benchmark, on Haswell this new kernel is always faster than the previous one, and sometimes even twice as fast. Even higher performance could be achieved with a better blocking size heuristic and, perhaps, with explicit prefetching. We should also check triangular product/solve to optimally exploit this new kernel (working on vertical panel of 4 columns is probably not optimal anymore).
* | Merged eigen/eigen into defaultGravatar Benoit Steiner2016-12-02
|\ \
| | * Fix small nit where I changed name of plog1p to pexpm1.Gravatar Srinivas Vasudevan2016-12-02
| | |
| | * Sync from Head.Gravatar Srinivas Vasudevan2016-12-02
| | |\ | | |/ | |/|
| | * Added support for expm1 in Eigen.Gravatar Srinivas Vasudevan2016-12-02
| | |
| * | Ease compiler job to generate clean and efficient code in mat*vec.Gravatar Gael Guennebaud2016-12-02
| | |
| * | Operators += and -= do not resize!Gravatar Gael Guennebaud2016-12-02
| | |
* | | Makingt default numeric_list works with sycl.Gravatar Mehdi Goli2016-12-02
| | |
| * | mergeGravatar Gael Guennebaud2016-12-02
| |\ \
| * | | Add perf monitoring for gemvGravatar Gael Guennebaud2016-12-02
| | | |
| * | | Re-enable A^T*A action in BTLGravatar Gael Guennebaud2016-12-02
| | | |
| | * | bug #1355: Fixed wrong line-endings on two filesGravatar Christoph Hertzberg2016-12-02
| |/ /
| * | typo UIntPtrGravatar Angelos Mantzaflaris2016-12-01
| | | | | | | | | | | | | | | (grafted from b6f04a2dd4d68fe1858524709813a5df5b9a085b )
| * | fix two warnings(unused typedef, unused variable) and a typoGravatar Angelos Mantzaflaris2016-12-01
| |/ | | | | | | | | (grafted from a9aa3bcf50d55b63c8adb493a06c903ec34251c6 )
| * Clean up SparseCore module regarding ReverseInnerIteratorGravatar Gael Guennebaud2016-12-01
| |
| * fix member orderGravatar Gael Guennebaud2016-12-01
| |
| * Merged in rmlarsen/eigen (pull request PR-256)Gravatar Gael Guennebaud2016-12-01
| |\ | | | | | | | | | Add a default constructor for the "fake" __half class when not using the __half class provided by CUDA.
| * \ mergeGravatar Gael Guennebaud2016-12-01
| |\ \ | |/ / |/| |
* | | Merged eigen/eigen into defaultGravatar Benoit Steiner2016-12-01
|\ \ \
* | | | Adding sycl backend for TensorPadding.h; disbaling __unit128 for sycl in ↵Gravatar Mehdi Goli2016-12-01
| | | | | | | | | | | | | | | | TensorIntDiv.h; disabling cashsize for sycl in tensorDeviceDefault.h; adding sycl backend for StrideSliceOP ; removing sycl compiler warning for creating an array of size 0 in CXX11Meta.h; cleaning up the sycl backend code.
| | * | cmake: remove architecture dependency from Eigen3ConfigVersion.cmakeGravatar Sergiu Deitsch2016-11-30
| | | | | | | | | | | | | | | | | | | | | | | | Also, install Eigen3*.cmake under $prefix/share/eigen3/cmake by default. (grafted from 86ab00cdcfc81ef7ebc92ddc3314d7df67c65354 )
| | * | doc: mention the NO_MODULE option and target availabilityGravatar Sergiu Deitsch2016-11-30
| | | | | | | | | | | | | | | | | | | | (grafted from 65f09be8d2aaeda054cce574ea14a74b00507011 )
| | | * Add a default constructor for the "fake" __half class when not using theGravatar Rasmus Munk Larsen2016-11-29
| | | | | | | | | | | | | | | | __half class provided by CUDA.
| | * | cmake: added Eigen3::Eigen imported targetGravatar Sergiu Deitsch2016-11-22
| |/ / | | | | | | | | | | | | (grafted from a287140f7292b9c15719bc6a3a4494ac7874e3cd )
| * / Fix misleading-indentation warnings.Gravatar Gael Guennebaud2016-12-01
|/ /
* | Cleaned up forward declarationsGravatar Benoit Steiner2016-11-30
| |
* | Moved the MemCopyFunctor back to TensorSyclDevice since it's the only caller ↵Gravatar Benoit Steiner2016-11-30
| | | | | | | | and it makes TensorFlow compile again
* | Added the deallocate_all() method backGravatar Benoit Steiner2016-11-30
| |
* | Simplified includesGravatar Benoit Steiner2016-11-30
| |
* | Improved formattingGravatar Benoit Steiner2016-11-30
| |
* | Merged eigen/eigen into defaultGravatar Benoit Steiner2016-11-30
|\ \
* | | Udated the Sizes class to work on AMD gpus without requiring a separate ↵Gravatar Benoit Steiner2016-11-30
| | | | | | | | | | | | implementation
* | | Added an implementation of numeric_list that works with syclGravatar Benoit Steiner2016-11-30
| | |
| * | Fix slection of product implementation for dynamic size matrices with fixed ↵Gravatar Gael Guennebaud2016-11-30
| | | | | | | | | | | | max size.
| * | Pulled latest update from trunkGravatar Benoit Steiner2016-11-30
| |\ \