mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
fix(compiler): remove 1 warning (usgined vs signed)
This commit is contained in:
@@ -162,7 +162,7 @@ getBroadcastedAffineMapMultiLUT(const mlir::RankedTensorType &resultType,
|
||||
affineExprs.reserve(operandShape.size());
|
||||
// Don't take the lut dimension into account
|
||||
size_t deltaNumDim = resultShape.size() - operandShape.size() + 1;
|
||||
for (auto i = 0; i < operandShape.size() - 1; i++) {
|
||||
for (size_t i = 0; i < operandShape.size() - 1; i++) {
|
||||
if (operandShape[i] == 1 && resultShape[i + deltaNumDim] != 1) {
|
||||
affineExprs.push_back(rewriter.getAffineConstantExpr(0));
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user