Skip to content

Commit

Permalink
[CI] Fix the hexagon string (apache#5304)
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen authored and zhiics committed Apr 17, 2020
1 parent bde2419 commit df27c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/target/target.cc
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Target CreateTarget(const std::string& target_name,
} else if (target_name == "hybrid") {
t->device_type = kDLCPU;
} else if (target_name == "hexagon") {
t->keys_array.push_back(tir::StringImmNode::make("hexagon"));
t->keys_array.push_back(runtime::String("hexagon"));
t->device_type = kDLHexagon;
} else {
LOG(ERROR) << "Unknown target name " << target_name;
Expand Down

0 comments on commit df27c13

Please sign in to comment.