aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
Commit message (Expand)AuthorAge
* Improved the blocking strategy to speedup multithreaded tensor contractions.Gravatar Benoit Steiner2015-04-09
* add a note on bug #992Gravatar Gael Guennebaud2015-04-08
* bug #992: don't select a 3p GEMM path with non-vectorizable scalar types, thi...Gravatar Benoit Jacob2015-04-07
* Only use blocking sizes LUTs for single-thread products for nowGravatar Benoit Jacob2015-03-31
* Fix computeProductBlockingSizes with m==0, and add respective unit test.Gravatar Gael Guennebaud2015-03-31
* use unsigned short instead of uint16_t which doesn't exist in c++98Gravatar Benoit Jacob2015-03-17
* Similar to cset 3589a9c115a892ea3ca5dac74d71a1526764cb38Gravatar Benoit Jacob2015-03-16
* fix bug in maxsize calculation, which would cause products of size > 2048 to ...Gravatar Benoit Jacob2015-03-16
* fix compilation with GCC 4.8Gravatar Benoit Jacob2015-03-16
* Fix bug in case where EIGEN_TEST_SPECIFIC_BLOCKING_SIZE is defined but falseGravatar Benoit Jacob2015-03-15
* actual_panel_rows computation should always be resilient to parameters not co...Gravatar Benoit Jacob2015-03-15
* Refactor computeProductBlockingSizes to make room for the possibility of usin...Gravatar Benoit Jacob2015-03-15
* organize a little our default cache sizes, and use a saner default L1 outside...Gravatar Benoit Jacob2015-03-13
* Avoid undeflow when blocking size are tuned manually.Gravatar Gael Guennebaud2015-03-06
* bug #978: early return for vanishing productsGravatar Gael Guennebaud2015-03-06
* Improve blocking heuristic: if the lhs fit within L1, then block on the rhs i...Gravatar Gael Guennebaud2015-03-06
* Improve product kernel: replace the previous dynamic loop swaping strategy by...Gravatar Gael Guennebaud2015-03-06
* Product optimization: implement a dynamic loop-swapping startegy to improve m...Gravatar Gael Guennebaud2015-03-05
* Fix asm comments in 1px1 kernelGravatar Benoit Jacob2015-03-03
* Add a benchmark-default-sizes action to benchmark-blocking-sizes.cppGravatar Benoit Jacob2015-03-03
* Increase unit-test L1 cache size to ensure we are doing at least 2 peeled loo...Gravatar Gael Guennebaud2015-02-27
* Re-enbale detection of min/max parentheses protection, and re-enable mpreal_s...Gravatar Gael Guennebaud2015-02-27
* Reimplement the selection between rotating and non-rotating kernelsGravatar Benoit Jacob2015-02-27
* Avoid packing rhs multiple-times when blocking on the lhs only.Gravatar Gael Guennebaud2015-02-26
* Make sure that the block size computation is tested by our unit test.Gravatar Gael Guennebaud2015-02-26
* Implement a more generic blocking-size selection algorithm. See explanations ...Gravatar Gael Guennebaud2015-02-26
* Fix typos in block-size testing code, and set peeling on k to 8.Gravatar Gael Guennebaud2015-02-26
* So I extensively measured the impact of the offset in this prefetch. I tried ...Gravatar Benoit Jacob2015-02-25
* Fix my recent prefetch changes:Gravatar Benoit Jacob2015-02-23
* rotating kernel: avoid compiling anything outside of ARMGravatar Benoit Jacob2015-02-18
* remove a newly introduced redundant typedef - sorry.Gravatar Benoit Jacob2015-02-18
* bug #955 - Implement a rotating kernel alternative in the 3px4 gebp pathGravatar Benoit Jacob2015-02-18
* Fixed template parameter.Gravatar Hauke Heibel2015-02-18
* mergeGravatar Gael Guennebaud2015-02-18
|\
* | Clean a bit computeProductBlockingSizes (use Index type, remove CEIL macro)Gravatar Gael Guennebaud2015-02-18
| * bug #958 - Allow testing specific blocking sizesGravatar Benoit Jacob2015-02-18
|/
* Fix a regression when using OpenMP, and fix bug #714: the number of threads m...Gravatar Gael Guennebaud2015-02-18
* Fix bug #945: workaround MSVC warningGravatar Gael Guennebaud2015-02-18
* Merged in chtz/eigen-indexconversion (pull request PR-92)Gravatar Gael Guennebaud2015-02-16
|\
| * The usage of DenseIndex is deprecated, so let's replace DenseIndex by IndexGravatar Gael Guennebaud2015-02-16
| * Remove deprecated usage of expr::Index.Gravatar Gael Guennebaud2015-02-16
* | bug #953 - Fix prefetches in 3px4 product kernelGravatar Benoit Jacob2015-02-13
|/
* Pulled latest fixesGravatar Benoit Steiner2015-02-06
|\
| * Fix symmetric productGravatar Gael Guennebaud2015-02-06
* | Pulled the latest changes from the trunkGravatar Benoit Steiner2015-02-06
|\ \ | |/ |/|
| * bug #936, patch 1.5/3: rename _FUSED_ macros to _SINGLE_INSTRUCTION_,Gravatar Benoit Jacob2015-01-31
| * bug #936, patch 1/3: some cleanup and renaming for consistency.Gravatar Benoit Jacob2015-01-30
| * bug #935: Add asm comments in GEBP kernels to work around a bugGravatar Benoit Jacob2015-01-30
* | Ensured that contractions that can be reduced to a matrix vector product work...Gravatar Benoit Steiner2015-01-06
* | Generalized the matrix vector product code.Gravatar Benoit Steiner2014-10-31