Home
last modified time | relevance | path

Searched refs:elementBitWidth (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/NVGPU/IR/
H A DNVGPUDialect.cpp207 int64_t elementBitWidth = resType.getIntOrFloatBitWidth(); in verify() local
210 int64_t numElementsPer32b = 32 / elementBitWidth; in verify()
229 if (elementBitWidth > 32) in verify()
231 if (isTranspose && !(elementBitWidth == 16)) in verify()
/llvm-project-15.0.7/mlir/lib/Conversion/VectorToGPU/
H A DNvGpuSupport.cpp182 const int64_t elementBitWidth = elementType.getIntOrFloatBitWidth(); in getLaneIdAndValueIdToOperandCoord() local
184 regInfo->registerWidthBits / elementBitWidth; in getLaneIdAndValueIdToOperandCoord()
/llvm-project-15.0.7/mlir/lib/IR/
H A DBuiltinAttributes.cpp1432 const char *inRawData, char *outRawData, size_t elementBitWidth, in convertEndianOfCharForBEmachine() argument
1443 switch (elementBitWidth) { in convertEndianOfCharForBEmachine()
1466 size_t nBytes = elementBitWidth / CHAR_BIT; in convertEndianOfCharForBEmachine()
1483 size_t elementBitWidth = getDenseElementStorageWidth(elementType); in convertEndianOfArrayRefForBEmachine() local
1484 assert(numElements * elementBitWidth == inRawData.size() * CHAR_BIT && in convertEndianOfArrayRefForBEmachine()
1486 if (elementBitWidth <= CHAR_BIT) in convertEndianOfArrayRefForBEmachine()
1490 elementBitWidth, numElements); in convertEndianOfArrayRefForBEmachine()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DBuiltinAttributes.td295 /// `elementBitWidth` bits. If `inRawData` is little endian (LE), it is
300 size_t elementBitWidth,