We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e618703 commit c594913Copy full SHA for c594913
src/op/elem.cc
@@ -186,7 +186,8 @@ Stmt FillNode::Lower(const LowerArgs &T, arith::Analyzer *analyzer) const {
186
auto init_loop = MakeSIMTLoop(analyzer);
187
auto vectorized_thread_loop = VectorizeLoop(init_loop);
188
return vectorized_thread_loop;
189
- } else if (dst.scope() == "shared.dyn" || dst.scope() == "shared" || dst.scope() == "global") {
+ } else if (dst.scope() == "shared.dyn" || dst.scope() == "shared" ||
190
+ dst.scope() == "global") {
191
auto par_op = ParallelOp(MakeSIMTLoop(analyzer));
192
par_op->InferLayout({T.target, T.thread_bounds, T.layout_map},
193
InferLevel::kFree);
0 commit comments