1Load hg-to-git hash maps from ./eigen_git/.git/ 2#3.0.1 3#3.1.1 4#3.2.0 53.2.4 6#574a7621809fe 758964a85800bd # introduce AVX 8#589cbd7e98174 # merge 9589db7d49efbb # introduce FMA 10#590a078f442a3 # complex and AVX 11590a419cea4a0 # improve packing with ptranspose 12#59251e85c936d # merge 13#592e497a27ddc 14593d5a795f673 # New gebp kernel: up to 3 packets x 4 register-level blocks 15#5942c3c95990d # merge 16#596c9788d55b9 # Disable 3pX4 kernel on Altivec 17#5999aa3dc4e21 # merge 186209452eb38f8 # before-evaluators 19#6333eba5e1101 # Implement evaluator for sparse outer products 20#663b9d314ae19 21#6655ef95fabee # Properly detect FMA support on ARM 22#667fe25f3b8e3 # FMA has been wrongly disabled 23#668409547a0c8 24#6694304c73542 # merge default to tensors 25#67216047c8d4a # merge default to tensors 26#67410a79ca3a3 # merge default to tensors 27#674b7271dffb5 # Generalized the gebp apis 28676bfdd9f3ac9 # Made the blocking computation aware of the l3 cache;<br/> Also optimized the blocking parameters to take<br/> into account the number of threads used for a computation. 296782dde63499c # generalized gemv 306799f98650d0a # ensured that contractions that can be reduced to a matrix vector product 31#6840918c51e60 # merge tensor 32684e972b55ec4 # change prefetching in gebp 33#68598604576d1 # merge index conversion 3468963eb0f6fe6 # clean blocking size computation 35689db05f2d01e # rotating kernel for ARM only 36#6901b7e12847d # result_of 3769226275b250a # fix prefetching change for ARM 38692692136350b # prefetching 39693a8ad8887bf # blocking size strategy 40693bcf9bb5c1f # avoid redundant pack_rhs 416987550107028 # dynamic loop swapping 4269858740ce4c6 # rm dynamic loop swapping,<br/> adjust lhs's micro panel height to fully exploit L1 cache 43698cd3bbffa73 # blocking heuristic:<br/> block on the rhs in L1 if the lhs fit in L1. 44701488c15615a # organize a little our default cache sizes,<br/> and use a saner default L1 outside of x86 (10% faster on Nexus 5) 45701e56aabf205 # Refactor computeProductBlockingSizes to make room<br/> for the possibility of using lookup tables 46701ca5c12587b # Polish lookup tables generation 477013589a9c115 # actual_panel_rows computation should always be resilient<br/> to parameters not consistent with the known L1 cache size, see comment 4870102babb9c0f # Provide a empirical lookup table for blocking sizes measured on a Nexus 5.<br/> Only for float, only for Android on ARM 32bit for now. 497088481dc21ea # Bug 986: add support for coefficient-based<br/> product with 0 depth. 50709d7f51feb07 # Bug 992: don't select a 3p GEMM path with non-SIMD scalar types. 51759f9303cc7c5 # 3.3-alpha1 52765aba1eda71e # help clang inlining 53770fe630c9873 # Improve numerical accuracy in LLT and triangular solve<br/> by using true scalar divisions (instead of x * (1/y)) 54#8741d23430628 # Improved the matrix multiplication blocking in the case<br/> where mr is not a power of 2 (e.g on Haswell CPUs) 55878f629fe95c8 # Made the index type a template parameter to evaluateProductBlockingSizes.<br/> Use numext::mini and numext::maxi instead of <br/> std::min/std::max to compute blocking sizes. 568975d51a7f12c # Don't optimize the processing of the last rows of<br/> a matrix matrix product in cases that violate<br/> the assumptions made by the optimized code path. 578986136f4fdd4 # Remove the rotating kernel. 58898e68e165a23 # Bug 256: enable vectorization with unaligned loads/stores. 5991466e99ab6a1 # Relax mixing-type constraints for binary coeff-wise operators 6091776236cdea4 # merge 61917101ea26f5e # Include the cost of stores in unrolling 62921672076db5d # Fix perf regression introduced in changeset e56aabf205 639210fa9e4a15c # Fix perf regression in dgemm introduced by changeset 5d51a7f12c 64936f6b3cf8de9 # 3.3-beta2 65944504a4404f1 # Optimize expression matching 'd?=a-b*c' as 'd?=a; d?=b*c;' 6695877e27fbeee # 3.3-rc1 67959779774f98c # Bug 1311: fix alignment logic in some cases<br/> of (scalar*small).lazyProduct(small) 689729f9d8d2f62 # Disabled part of the matrix matrix peeling code<br/> that's incompatible with 512 bit registers 69979eeac81b8c0 # 3.3.0 70989c927af60ed # Fix a performance regression in (mat*mat)*vec<br/> for which mat*mat was evaluated multiple times. 71994fe696022ec # Operators += and -= do not resize! 7299466f65ccc36 # Ease compiler generating clean and efficient code in mat*vec 739946a5fe86098 # Complete rewrite of column-major-matrix * vector product<br/> to deliver higher performance of modern CPU. 7499591003f3b86 # Improve performance of row-major-dense-matrix * vector products<br/> for recent CPUs. 75997eb621413c1 # Revert vec/y to vec*(1/y) in row-major TRSM 7610444bbc320468 # Bug 1435: fix aliasing issue in exressions like: A = C - B*A; 771073624df50945 # Adds missing EIGEN_STRONG_INLINE to support MSVC<br/> properly inlining small vector calculations 781094d428a199ab # Bug 1562: optimize evaluation of small products<br/> of the form s*A*B by rewriting them as: s*(A.lazyProduct(B))<br/> to save a costly temporary.<br/> Measured speedup from 2x to 5x. 791096de9e31a06d # Introduce the macro ei_declare_local_nested_eval to<br/> help allocating on the stack local temporaries via alloca,<br/> and let outer-products makes a good use of it. 8011087b91c11207 # Bug 1578: Improve prefetching in matrix multiplication on MIPS. 811153aa110e681b # PR 526: Speed up multiplication of small, dynamically sized matrices 8211544ad359237a # Vectorize row-by-row gebp loop iterations on 16 packets as well 831157a476054879 # Bug 1624: improve matrix-matrix product on ARM 64, 20% speedup 841160a4159dba08 # do not read buffers out of bounds 851163c53eececb0 # Implement AVX512 vectorization of std::complex<float/double> 8611644e7746fe22 # Bug 1636: fix gemm performance issue with gcc>=6 and no FMA 871164956678a4ef # Bug 1515: disable gebp's 3pX4 micro kernel<br/> for MSVC<=19.14 because of register spilling. 881165426bce7529 # fix EIGEN_GEBP_2PX4_SPILLING_WORKAROUND<br/> for non vectorized type, and non x86/64 target 8911660d90637838 # enable spilling workaround on architectures with SSE/AVX 901166f159cf3d75 # Artificially increase l1-blocking size for AVX512.<br/> +10% speedup with current kernels. 9111686dd93f7e3b # Make code compile again for older compilers. 921175dbfcceabf5 # Bug: 1633: refactor gebp kernel and optimize for neon 93117670e133333d # Bug 1661: fix regression in GEBP and AVX512 9411760f028f61cb # GEBP: cleanup logic to choose between<br/> a 4 packets of 1 packet (=e118ce86fd+fix) 951180de77bf5d6c # gebp: Add new ½ and ¼ packet rows per (peeling) round on the lhs 96