| 623 | } |
| 624 | |
| 625 | static bool NodeInGraph(Node* node, Graph* graph) |
| 626 | { |
| 627 | int number = graph->seq_nodes.size(); |
| 628 | |
| 629 | for(int i = 0; i < number; i++) |
| 630 | { |
| 631 | if(node == graph->seq_nodes[i]) |
| 632 | return true; |
| 633 | } |
| 634 | |
| 635 | return false; |
| 636 | } |
| 637 | |
| 638 | /* the graph optimizer: conv_relu */ |
| 639 | static bool GraphFuseConvReLuCommon(Graph* graph, GraphOptimizer* opt, bool relu6) |
no test coverage detected