We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a4702 commit d3a414eCopy full SHA for d3a414e
mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
@@ -768,7 +768,7 @@ LogicalResult transform::FuseOp::verify() {
768
llvm::SmallDenseSet<int64_t, 4> seen;
769
for (int64_t v : permutation) {
770
if (!ShapedType::isDynamic(v)) {
771
- if (v < 0 || v >= iterspace_dim)
+ if (v < 0 || v >= static_cast<int64_t>(iterspace_dim))
772
return emitOpError() << "expects interchange values to be in range [0, "
773
<< iterspace_dim << "), found: " << v;
774
auto result = seen.insert(v);
0 commit comments