Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix lint
Browse files Browse the repository at this point in the history
comaniac committed Oct 21, 2019
1 parent b96e14d commit be8656d
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pass/vectorize_loop.cc
Original file line number Diff line number Diff line change
@@ -368,7 +368,7 @@ class Vectorizer : public IRMutator {
CHECK(!op->extent.type().is_vector());
Expr extent = Mutate(op->extent);
if (extent.type().is_vector()) {
LOG(WARNING) << "Detect vectorized extent type, scalarizing...";
// LOG(WARNING) << "Detect vectorized extent type, scalarizing...";
return Scalarize(s);
}
Stmt body = Mutate(op->body);
@@ -386,7 +386,7 @@ class Vectorizer : public IRMutator {
CHECK(!op->condition.type().is_vector());
Expr condition = this->Mutate(op->condition);
if (condition.type().is_vector()) {
//LOG(WARNING) << "Detect vector condition in Vectorized Loop, scalarizing...";
// LOG(WARNING) << "Detect vector condition in Vectorized Loop, scalarizing...";
return Scalarize(s);
}
Stmt then_case = this->Mutate(op->then_case);
2 changes: 1 addition & 1 deletion topi/python/topi/cuda/conv2d_hwcn.py
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
from tvm import autotvm
from tvm.autotvm.task.space import SplitEntity

from .. import generic, nn, tag
from .. import generic, tag


@autotvm.register_topi_schedule(generic.schedule_conv2d_hwcn, ["cuda", "gpu"], ["direct"])

0 comments on commit be8656d

Please sign in to comment.