Lines Matching defs:ta
5964 for (const auto &ta : llvm::enumerate(perm)) {
5965 if (ta.value() < 0 || ta.value() >= rank)
5966 return emitOpError("transposition index out of range: ") << ta.value();
5967 if (seen[ta.value()])
5968 return emitOpError("duplicate position index: ") << ta.value();
5969 seen[ta.value()] = true;
5970 if (resultType.getDimSize(ta.index()) != vectorType.getDimSize(ta.value()))
5971 return emitOpError("dimension size mismatch at: ") << ta.value();