| 26 | using namespace dnnc; |
| 27 | |
| 28 | bool dnnc::ioNode::getNodes(graph &g, std::vector<node *> &nodes, |
| 29 | bool matchInput) { |
| 30 | nodes = g.findNodesWithIO(_name, matchInput); |
| 31 | return bool(nodes.size()); |
| 32 | } |
| 33 | |
| 34 | bool dnnc::opNode::getNodes(graph &g, std::vector<node *> &nodes, |
| 35 | bool matchInput) { |
nothing calls this directly
no test coverage detected