Displaying 1 result from an estimated 1 matches for "enableunrollandjam".
2018 Aug 09
3
Legacy Loop Pass Manager question
...utput:
Scalar Evolution Analysis
Loop Pass Manager
Induction Variable Simplification
Recognize loop idioms
Delete dead loops
Unroll loops
MergedLoadStoreMotion
Which is in line to what I thought. However for this code snippet:
if (EnableUnrollAndJam) {
// Unroll and Jam. We do this before unroll but need to be in a
separate
// loop pass manager in order for the outer loop to be processed by
// unroll and jam before the inner loop is unrolled.
MPM.add(createLoopUnrollAndJamPass(OptLevel));
}
MPM.add(createLoopUn...