[Mlir-commits] [mlir] [mlir][spirv] Fix crash in ArithToSPIRV trunc-i lowering on tensor types (PR #179009)
Jakub Kuderski
llvmlistbot at llvm.org
Mon Feb 2 07:41:28 PST 2026
================
@@ -810,15 +807,15 @@ struct ExtUIPattern final : public OpConversionPattern<arith::ExtUIOp> {
if (isBoolScalarOrVector(srcType))
return failure();
- if (!isIntScalarOrVectorType(srcType))
+ if (!isScalarOrVectorOfScalar(srcType))
----------------
kuhar wrote:
Also here
https://github.com/llvm/llvm-project/pull/179009
More information about the Mlir-commits
mailing list