Skip to content

Commit 5401c94

Browse files
committed
fix lint error
1 parent 19c0fc8 commit 5401c94

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/op/parallel.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,8 @@ LayoutMap ParallelOp::InferLayout(const LayoutInferArgs &T, InferLevel level) {
351351
for (const auto &[buffer, _] : indice_map_) {
352352
if (T.layout_map.count(buffer)) {
353353
auto fragment = T.layout_map[buffer].as<Fragment>().value();
354-
auto vars = loop_vars_.Map([](const IterVar &iv) { return PrimExpr(iv->var); });
354+
auto vars =
355+
loop_vars_.Map([](const IterVar &iv) { return PrimExpr(iv->var); });
355356
if (!ProveFragmentContains(loop_layout_, fragment, vars,
356357
indice_map_[buffer], analyzer_)) {
357358
std::ostringstream oss;

0 commit comments

Comments
 (0)