[PATCH] D104126: [MicroBenchmarks] Add initial SLP vectorization benchmarks.

Florian Hahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 14 04:08:50 PDT 2021


fhahn marked an inline comment as done.
fhahn added inline comments.


================
Comment at: MicroBenchmarks/SLPVectorization/Versioning.cpp:17
+template <unsigned N, typename T>
+__attribute__((noinline)) void do_xor_reduction(T *A, T *B) {
+  for (int i = 0; i < N; i++) {
----------------
Meinersbur wrote:
> Where does the "reduction" in the name come from?
There's no reduction, I adjusted the name, thanks!


Repository:
  rT test-suite

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D104126/new/

https://reviews.llvm.org/D104126



More information about the llvm-commits mailing list