| 39 | class GraphContext; |
| 40 | |
| 41 | inline bool is_utility_node(INode *node) |
| 42 | { |
| 43 | std::set<NodeType> utility_node_types = {NodeType::PrintLayer}; |
| 44 | return utility_node_types.find(node->type()) != utility_node_types.end(); |
| 45 | } |
| 46 | |
| 47 | /** Returns the tensor descriptor of a given tensor |
| 48 | * |
no test coverage detected