Skip to content

Commit

Permalink
fix issue#17
Browse files Browse the repository at this point in the history
  • Loading branch information
Lugatod committed Apr 25, 2017
1 parent 2ba41ee commit 98ac43d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lower/lower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ static vector<Stmt> lower(const Target& target,
}
}
taco_iassert(childExpr.defined());
auto childCode = lower(childTarget, childExpr, child, ctx);
auto childCode = lower::lower(childTarget, childExpr, child, ctx);
util::append(caseBody, childCode);
}

Expand Down Expand Up @@ -509,7 +509,7 @@ Stmt lower(TensorBase tensor, string funcName, set<Property> properties) {
target.ptr = resultIterator.getPtrVar();

for (auto& root : roots) {
vector<Stmt> loopNest = lower(target, indexExpr, root, ctx);
auto loopNest = lower::lower(target, indexExpr, root, ctx);
util::append(code, loopNest);
}
}
Expand Down

0 comments on commit 98ac43d

Please sign in to comment.