Skip to content

Commit 6cba9c1

Browse files
committed
Fix code formatting.
1 parent 58e7545 commit 6cba9c1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mlir/lib/Conversion/TosaToLinalg/TosaToLinalg.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,10 @@ static Value createLinalgBodyCalculationForElementwiseOp(
149149
auto inputZpAttr = cast<tosa::NegateOp>(op).getInput1ZpAttr();
150150
auto outputZpAttr = cast<tosa::NegateOp>(op).getOutputZpAttr();
151151

152-
const int64_t inZp = inputZpAttr ? inputZpAttr.getValue().getSExtValue() : 0;
153-
const int64_t outZp = outputZpAttr ? outputZpAttr.getValue().getSExtValue() : 0;
152+
const int64_t inZp =
153+
inputZpAttr ? inputZpAttr.getValue().getSExtValue() : 0;
154+
const int64_t outZp =
155+
outputZpAttr ? outputZpAttr.getValue().getSExtValue() : 0;
154156

155157
if (!inZp && !outZp) {
156158
auto constant = rewriter.create<arith::ConstantOp>(

0 commit comments

Comments
 (0)