changesets.txt 6.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. Load hg-to-git hash maps from ./eigen_git/.git/
  2. #3.0.1
  3. #3.1.1
  4. #3.2.0
  5. 3.2.4
  6. #574a7621809fe
  7. 58964a85800bd # introduce AVX
  8. #589cbd7e98174 # merge
  9. 589db7d49efbb # introduce FMA
  10. #590a078f442a3 # complex and AVX
  11. 590a419cea4a0 # improve packing with ptranspose
  12. #59251e85c936d # merge
  13. #592e497a27ddc
  14. 593d5a795f673 # 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
  18. 6209452eb38f8 # 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
  28. 676bfdd9f3ac9 # 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.
  29. 6782dde63499c # generalized gemv
  30. 6799f98650d0a # ensured that contractions that can be reduced to a matrix vector product
  31. #6840918c51e60 # merge tensor
  32. 684e972b55ec4 # change prefetching in gebp
  33. #68598604576d1 # merge index conversion
  34. 68963eb0f6fe6 # clean blocking size computation
  35. 689db05f2d01e # rotating kernel for ARM only
  36. #6901b7e12847d # result_of
  37. 69226275b250a # fix prefetching change for ARM
  38. 692692136350b # prefetching
  39. 693a8ad8887bf # blocking size strategy
  40. 693bcf9bb5c1f # avoid redundant pack_rhs
  41. 6987550107028 # dynamic loop swapping
  42. 69858740ce4c6 # rm dynamic loop swapping,<br/> adjust lhs's micro panel height to fully exploit L1 cache
  43. 698cd3bbffa73 # blocking heuristic:<br/> block on the rhs in L1 if the lhs fit in L1.
  44. 701488c15615a # organize a little our default cache sizes,<br/> and use a saner default L1 outside of x86 (10% faster on Nexus 5)
  45. 701e56aabf205 # Refactor computeProductBlockingSizes to make room<br/> for the possibility of using lookup tables
  46. 701ca5c12587b # Polish lookup tables generation
  47. 7013589a9c115 # actual_panel_rows computation should always be resilient<br/> to parameters not consistent with the known L1 cache size, see comment
  48. 70102babb9c0f # 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.
  49. 7088481dc21ea # Bug 986: add support for coefficient-based<br/> product with 0 depth.
  50. 709d7f51feb07 # Bug 992: don't select a 3p GEMM path with non-SIMD scalar types.
  51. 759f9303cc7c5 # 3.3-alpha1
  52. 765aba1eda71e # help clang inlining
  53. 770fe630c9873 # 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)
  55. 878f629fe95c8 # 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.
  56. 8975d51a7f12c # 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.
  57. 8986136f4fdd4 # Remove the rotating kernel.
  58. 898e68e165a23 # Bug 256: enable vectorization with unaligned loads/stores.
  59. 91466e99ab6a1 # Relax mixing-type constraints for binary coeff-wise operators
  60. 91776236cdea4 # merge
  61. 917101ea26f5e # Include the cost of stores in unrolling
  62. 921672076db5d # Fix perf regression introduced in changeset e56aabf205
  63. 9210fa9e4a15c # Fix perf regression in dgemm introduced by changeset 5d51a7f12c
  64. 936f6b3cf8de9 # 3.3-beta2
  65. 944504a4404f1 # Optimize expression matching 'd?=a-b*c' as 'd?=a; d?=b*c;'
  66. 95877e27fbeee # 3.3-rc1
  67. 959779774f98c # Bug 1311: fix alignment logic in some cases<br/> of (scalar*small).lazyProduct(small)
  68. 9729f9d8d2f62 # Disabled part of the matrix matrix peeling code<br/> that's incompatible with 512 bit registers
  69. 979eeac81b8c0 # 3.3.0
  70. 989c927af60ed # Fix a performance regression in (mat*mat)*vec<br/> for which mat*mat was evaluated multiple times.
  71. 994fe696022ec # Operators += and -= do not resize!
  72. 99466f65ccc36 # Ease compiler generating clean and efficient code in mat*vec
  73. 9946a5fe86098 # Complete rewrite of column-major-matrix * vector product<br/> to deliver higher performance of modern CPU.
  74. 99591003f3b86 # Improve performance of row-major-dense-matrix * vector products<br/> for recent CPUs.
  75. 997eb621413c1 # Revert vec/y to vec*(1/y) in row-major TRSM
  76. 10444bbc320468 # Bug 1435: fix aliasing issue in exressions like: A = C - B*A;
  77. 1073624df50945 # Adds missing EIGEN_STRONG_INLINE to support MSVC<br/> properly inlining small vector calculations
  78. 1094d428a199ab # 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.
  79. 1096de9e31a06d # 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.
  80. 11087b91c11207 # Bug 1578: Improve prefetching in matrix multiplication on MIPS.
  81. 1153aa110e681b # PR 526: Speed up multiplication of small, dynamically sized matrices
  82. 11544ad359237a # Vectorize row-by-row gebp loop iterations on 16 packets as well
  83. 1157a476054879 # Bug 1624: improve matrix-matrix product on ARM 64, 20% speedup
  84. 1160a4159dba08 # do not read buffers out of bounds
  85. 1163c53eececb0 # Implement AVX512 vectorization of std::complex<float/double>
  86. 11644e7746fe22 # Bug 1636: fix gemm performance issue with gcc>=6 and no FMA
  87. 1164956678a4ef # Bug 1515: disable gebp's 3pX4 micro kernel<br/> for MSVC<=19.14 because of register spilling.
  88. 1165426bce7529 # fix EIGEN_GEBP_2PX4_SPILLING_WORKAROUND<br/> for non vectorized type, and non x86/64 target
  89. 11660d90637838 # enable spilling workaround on architectures with SSE/AVX
  90. 1166f159cf3d75 # Artificially increase l1-blocking size for AVX512.<br/> +10% speedup with current kernels.
  91. 11686dd93f7e3b # Make code compile again for older compilers.
  92. 1175dbfcceabf5 # Bug: 1633: refactor gebp kernel and optimize for neon
  93. 117670e133333d # Bug 1661: fix regression in GEBP and AVX512
  94. 11760f028f61cb # GEBP: cleanup logic to choose between<br/> a 4 packets of 1 packet (=e118ce86fd+fix)
  95. 1180de77bf5d6c # gebp: Add new ½ and ¼ packet rows per (peeling) round on the lhs