Displaying 1 result from an estimated 1 matches for "newshufflemask".
Did you mean:
getshufflemask
2012 Apr 12
0
[LLVMdev] detection of constant diagonal matrix * vector
...Consts;
leftConstVector->getVectorElements(leftConsts);
rightConstVector->getVectorElements(rightConsts);
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 leftIn...