[Mlir-commits] [mlir] bba5951 - [MLIR] Fix an assert that contains a mistake in conditional operator (#95668)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Jun 17 12:39:33 PDT 2024
Author: Shivam Gupta
Date: 2024-06-18T01:09:30+05:30
New Revision: bba5951b6f9cd77047cafc554b20144b33602298
URL: https://github.com/llvm/llvm-project/commit/bba5951b6f9cd77047cafc554b20144b33602298
DIFF: https://github.com/llvm/llvm-project/commit/bba5951b6f9cd77047cafc554b20144b33602298.diff
LOG: [MLIR] Fix an assert that contains a mistake in conditional operator (#95668)
This is described in (N2) https://pvs-studio.com/en/blog/posts/cpp/1126/
so caught by the PVS Studio analyzer.
Warning message -
V502 Perhaps the '?:' operator works in a different way than it was
expected. The '?:' operator has a lower priority than the '+' operator.
LoopEmitter.cpp 983
V502 Perhaps the '?:' operator works in a different way than it was
expected. The '?:' operator has a lower priority than the '+' operator.
LoopEmitter.cpp 1039
The assert should be
assert(bArgs.size() == reduc.size() + (needsUniv ? 1 : 0));
since + has higher precedence and ? has lower.
This further can be reduce to
assert(aArgs.size() == reduc.size() + needsUniv);
because needUniv is a bool value which is implicitly converted to 0 or
Added:
Modified:
mlir/lib/Dialect/SparseTensor/Transforms/Utils/LoopEmitter.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Dialect/SparseTensor/Transforms/Utils/LoopEmitter.cpp b/mlir/lib/Dialect/SparseTensor/Transforms/Utils/LoopEmitter.cpp
index 05883f1cefdf3..fe0e515a2d180 100644
--- a/mlir/lib/Dialect/SparseTensor/Transforms/Utils/LoopEmitter.cpp
+++ b/mlir/lib/Dialect/SparseTensor/Transforms/Utils/LoopEmitter.cpp
@@ -542,7 +542,7 @@ std::pair<Operation *, Value> LoopEmitter::emitWhileLoopOverTensorsAtLvls(
}
// The remaining block arguments are user-provided reduction values and an
// optional universal index. Make sure their sizes match.
- assert(bArgs.size() == reduc.size() + needsUniv ? 1 : 0);
+ assert(bArgs.size() == reduc.size() + needsUniv);
builder.create<scf::ConditionOp>(loc, whileCond, before->getArguments());
// Generates loop body.
@@ -560,7 +560,7 @@ std::pair<Operation *, Value> LoopEmitter::emitWhileLoopOverTensorsAtLvls(
}
// In-place update on reduction variable.
- assert(aArgs.size() == reduc.size() + needsUniv ? 1 : 0);
+ assert(aArgs.size() == reduc.size() + needsUniv);
for (unsigned i = 0, e = reduc.size(); i < e; i++)
reduc[i] = aArgs[i];
More information about the Mlir-commits
mailing list