[Mlir-commits] [mlir] [mlir][spirv] Add definition for OpGroupNonUniformBallotBitCount (PR #126055)
Jakub Kuderski
llvmlistbot at llvm.org
Thu Feb 6 10:53:00 PST 2025
================
@@ -4262,6 +4263,7 @@ def SPIRV_ScalarOrVectorOrPtr : AnyTypeOf<[SPIRV_ScalarOrVector, SPIRV_AnyPtr]>;
class SPIRV_Vec4<Type type> : VectorOfLengthAndType<[4], [type]>;
def SPIRV_IntVec4 : SPIRV_Vec4<SPIRV_Integer>;
def SPIRV_IOrUIVec4 : SPIRV_Vec4<SPIRV_SignlessOrUnsignedInt>;
+def SPIRV_IOrUI32Vec4 : SPIRV_Vec4<SPIRV_SignlessOrUnsignedInt32>;
----------------
kuhar wrote:
This is rare enough that I'd use `SPIRV_Vec4<SignlessOrUnsignedIntOfWidths<[32]>>` directly where you need it.
https://github.com/llvm/llvm-project/pull/126055
More information about the Mlir-commits
mailing list