You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling the et_feeder_node->comm_size() method of ETFeederNode, it is found that the read comm size is 0, but the expected result should not be 0.
After investigation, the acquisition failed because the type obtained in src/feeder/et_feeder_node.cpp:28 was attr.int64_val() instead of attr.uint64_val(). it causes the method to return a result of 0
// in src/feeder/et_feeder_node.cpp:28ETFeederNode::ETFeederNode(std::shared_ptr<ChakraProtoMsg::Node> node) {
...
} elseif (attr_name == "comm_size") {
this->comm_size_ = attr.int64_val(); // attr.uint64_val() method should be used here
...
}
Looking forward to fixing this bug and checking if there are similar issues elsewhere.
The text was updated successfully, but these errors were encountered:
Describe the Bug
When calling the
et_feeder_node->comm_size()
method of ETFeederNode, it is found that the read comm size is 0, but the expected result should not be 0.After investigation, the acquisition failed because the type obtained in
src/feeder/et_feeder_node.cpp:28
wasattr.int64_val()
instead ofattr.uint64_val()
. it causes the method to return a result of 0Looking forward to fixing this bug and checking if there are similar issues elsewhere.
The text was updated successfully, but these errors were encountered: