| 69 | } |
| 70 | |
| 71 | void GetRNBNodeInputs(const NodeDef& pre_node, NodeDef* node) { |
| 72 | if (pre_node.name_ == "API_SAMPLE_NB" || |
| 73 | pre_node.name_ == "API_GATHER_RESULT" || |
| 74 | pre_node.name_ == "API_GET_RNB_NODE" || |
| 75 | pre_node.name_ == "API_GET_NB_NODE" || |
| 76 | pre_node.name_ == "API_GET_NB_FILTER" || |
| 77 | pre_node.name_ == "API_SAMPLE_N_WITH_TYPES") { |
| 78 | node->input_edges_.push_back({pre_node.name_, pre_node.id_, 1}); |
| 79 | } else { |
| 80 | NORMAL_INPUT_GEN(); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | void GetNBNodeInputs(const NodeDef& pre_node, NodeDef* node) { |
| 85 | if (pre_node.name_ == "API_SAMPLE_NB" || |
nothing calls this directly
no outgoing calls
no test coverage detected