Skip to content

Commit

Permalink
Update is_cpu_op to default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
willjwon committed Nov 3, 2024
1 parent 47c8154 commit 63b7a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/feeder/et_feeder_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ETFeederNode::ETFeederNode(std::shared_ptr<ChakraProtoMsg::Node> node) {
this->id_ = node->id();
this->name_ = node->name();
this->runtime_ = node->duration_micros();
this->is_cpu_op_ = 1;
this->is_cpu_op_ = 0;

for (const auto& attr : node->attr()) {
const string& attr_name = attr.name();
Expand Down

0 comments on commit 63b7a35

Please sign in to comment.