Skip to content

Commit c594913

Browse files
committed
fix lint error
1 parent e618703 commit c594913

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/op/elem.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ Stmt FillNode::Lower(const LowerArgs &T, arith::Analyzer *analyzer) const {
186186
auto init_loop = MakeSIMTLoop(analyzer);
187187
auto vectorized_thread_loop = VectorizeLoop(init_loop);
188188
return vectorized_thread_loop;
189-
} else if (dst.scope() == "shared.dyn" || dst.scope() == "shared" || dst.scope() == "global") {
189+
} else if (dst.scope() == "shared.dyn" || dst.scope() == "shared" ||
190+
dst.scope() == "global") {
190191
auto par_op = ParallelOp(MakeSIMTLoop(analyzer));
191192
par_op->InferLayout({T.target, T.thread_bounds, T.layout_map},
192193
InferLevel::kFree);

0 commit comments

Comments
 (0)