[LLVMbugs] [Bug 17680] New: [Vectorizer] Recognize reduction stride vectorization
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Thu Oct 24 04:24:37 PDT 2013
http://llvm.org/bugs/show_bug.cgi?id=17680
Bug ID: 17680
Summary: [Vectorizer] Recognize reduction stride vectorization
Product: libraries
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: Loop Optimizer
Assignee: unassignedbugs at nondot.org
Reporter: renato.golin at linaro.org
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
After stride access is added to the vectorizer, and interleaved and
non-interleaved access is implemented, make sure that reductions also work with
the non-unit stride induction. Example:
for (i..N/3) {
a += b[3*i] + I;
a += b[3*i+1] + J;
a += b[3*i+2] + K;
}
return a;
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20131024/7d9258a5/attachment.html>
More information about the llvm-bugs
mailing list