Commit c12275ee by Zhi Committed by Tianqi Chen

[relay] Small refactor for context (#4091)

parent 3a32729c
...@@ -328,10 +328,9 @@ class RelayBuildModule : public runtime::ModuleNode { ...@@ -328,10 +328,9 @@ class RelayBuildModule : public runtime::ModuleNode {
// Create a sequential pass and perform optimizations. // Create a sequential pass and perform optimizations.
transform::Pass seq = transform::Sequential(pass_seqs); transform::Pass seq = transform::Sequential(pass_seqs);
if (targets.size() == 1) { if (targets.size() == 1) {
for (const auto& kv : targets) { const auto& it = targets.begin();
With<Target> tctx(kv.second); With<Target> tctx((*it).second);
relay_module = seq(relay_module); relay_module = seq(relay_module);
}
} else { } else {
relay_module = seq(relay_module); relay_module = seq(relay_module);
} }
......
...@@ -897,11 +897,10 @@ Module VMCompiler::OptimizeModule(const Module& mod, const TargetsMap& targets) ...@@ -897,11 +897,10 @@ Module VMCompiler::OptimizeModule(const Module& mod, const TargetsMap& targets)
// TODO(wweic): Support heterogenous execution // TODO(wweic): Support heterogenous execution
tvm::With<relay::transform::PassContext> ctx(pass_ctx); tvm::With<relay::transform::PassContext> ctx(pass_ctx);
if (targets.size() == 1) { if (targets.size() == 1) {
for (const auto& kv : targets) { const auto& it = targets.begin();
With<Target> tctx(kv.second); With<Target> tctx((*it).second);
return seq(mod); return seq(mod);
} }
}
return seq(mod); return seq(mod);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment