Displaying 1 result from an estimated 1 matches for "noshuffl".
Did you mean:
noshuffle
2012 Apr 12
0
[LLVMdev] detection of constant diagonal matrix * vector
...if (leftConsts.size() == numElements && rightConsts.size()
== numElements)
{
SmallVector<Constant*, 8> newShuffleMask(numElements);
SmallVector<Constant*, 8> newConst(numElements);
int i;
bool noShuffle = true;
for (i = 0; i < numElements; ++i)
{
// get shuffle indices
int leftIndex = leftMask[i];
int rightIndex = rightMask[i];
// check if indices access the first vector...