Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spmvGPU and ttvGPU #552

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/index_notation/transformations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ IndexStmt Precompute::apply(IndexStmt stmt, std::string* reason) const {
/// The reduceOp depends on the relation between indexVar sets of rhs and lhs. For rcl and inter, reduceOp
/// must be +=. For lcr, reduceOp must be =. For none and equal, reduceOp can't be decided at this stage.
switch (rel) {
case none: a = Assignment(a.getLhs(), a.getRhs());break;
case none: a = Assignment(a.getLhs(), a.getRhs(), Add());break;
case rcl: a = Assignment(a.getLhs(), a.getRhs(), Add());break;
case lcr: a = Assignment(a.getLhs(), a.getRhs());break;
case inter: a = Assignment(a.getLhs(), a.getRhs(), Add());break;
Expand All @@ -456,7 +456,7 @@ IndexStmt Precompute::apply(IndexStmt stmt, std::string* reason) const {
/// The reduceOp depends on the relation between indexVar sets of rhs and lhs. For rcl and inter, reduceOp
/// must be +=. For lcr, reduceOp must be =. For none and equal, reduceOp can't be decided at this stage.
switch (rel) {
case none: a = Assignment(a.getLhs(), a.getRhs());break;
case none: a = Assignment(a.getLhs(), a.getRhs(), Add());break;
case rcl: a = Assignment(a.getLhs(), a.getRhs(), Add());break;
case lcr: a = Assignment(a.getLhs(), a.getRhs());break;
case inter: a = Assignment(a.getLhs(), a.getRhs(), Add());break;
Expand Down