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
LOG_WARNING("Node " << util::node_info(n) << " output: " << out->debugName() << " does not have a coresponding output, may potentially indicate a defective converter");
124
-
returnfalse;
121
+
autoiter_t = this->value_tensor_map.find(out);
122
+
if (iter_t == this->value_tensor_map.end()) {
123
+
auto iter_iv = this->evaluated_value_map.find(out);
124
+
if (iter_iv == this->evaluated_value_map.end()) {
125
+
LOG_WARNING("Node " << util::node_info(n) << " output: " << out->debugName() << " does not have a coresponding value or tensor, may potentially indicate a defective evaluator or converter");
0 commit comments