Displaying 1 result from an estimated 1 matches for "vectorizetree".
2014 Mar 17
2
[LLVMdev] Improving SLPVectorizer for Julia
...d way to do this. The relevant place in SLPVectorizer.cpp is around here:
-------------------------------------------------------------
if (Cost < -SLPCostThreshold) {
DEBUG(dbgs() << "SLP: Vectorizing list at cost:" << Cost << ".\n");
R.vectorizeTree();
// Move to the next bundle.
i += VF - 1;
Changed = true;
}
-------------------------------------------------------------
Should I try to move the instructions before or after the call to R.vectorizeTree()? Or maybe do it even later after all bundles have been vecto...