Home
last modified time | relevance | path

Searched refs:VecSize (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/slang/
Dslang_rs_reflection.h291 void genVectorLengthCompatibilityCheck(const std::string &ArrayName, unsigned VecSize);
Dslang_rs_reflection.cpp991 unsigned VecSize) { in genVectorLengthCompatibilityCheck() argument
993 mOut.indent() << "if (" << ArrayName << ".length % " << std::to_string(VecSize) in genVectorLengthCompatibilityCheck()
996 << "\\\" is not a multiple of " << std::to_string(VecSize) in genVectorLengthCompatibilityCheck()
1408 const uint32_t VecSize = InsTypeData[InIdx].vecSize; in genExportReduceArrayVariant() local
1409 if (VecSize > 1) { in genExportReduceArrayVariant()
1410 InLength += " / " + std::to_string(VecSize); in genExportReduceArrayVariant()
1411 genVectorLengthCompatibilityCheck(ArgName, VecSize); in genExportReduceArrayVariant()
/frameworks/libs/binary_translation/intrinsics/
Dgen_intrinsics.py98 class VecSize(object): class
105 _VECTOR_SIZES = {'X64': VecSize(64, 1), 'X128': VecSize(128, 2)}