Skip to content

Commit 8a6a5ec

Browse files
[Lint]: [pre-commit.ci] auto fixes [...]
1 parent 7043506 commit 8a6a5ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/transform/lower_intrin.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ class IntrinInjecter : public tvm::arith::IRMutatorWithAnalyzer {
160160
// == truncdiv(a + b*c, b) - c
161161
IntImm min(op->a->dtype.element_of(), const_int_bound->min_value);
162162
PrimExpr ceildiv = truncdiv((op->b - 1) - min, op->b);
163-
PrimExpr offset_numerator = analyzer_->Simplify(op->a + op->b * ceildiv);
163+
PrimExpr offset_numerator =
164+
analyzer_->Simplify(op->a + op->b * ceildiv);
164165
return truncdiv(offset_numerator, op->b) - ceildiv;
165166
}
166167

0 commit comments

Comments
 (0)