Displaying 1 result from an estimated 1 matches for "rightindex".
Did you mean:
right_index
2012 Apr 12
0
[LLVMdev] detection of constant diagonal matrix * vector
...lt;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
if (leftIndex >= numElements && rightIndex >=
numElements)
break;
// get values from constant vectors
ConstantFP*...