| 767 | return true; |
| 768 | } |
| 769 | static bool GraphFuseConvReLu(Graph* graph, GraphOptimizer* opt) |
| 770 | { |
| 771 | return GraphFuseConvReLuCommon(graph, opt, false); |
| 772 | } |
| 773 | static bool GraphFuseConvReLu6(Graph* graph, GraphOptimizer* opt) |
| 774 | { |
| 775 | return GraphFuseConvReLuCommon(graph, opt, true); |
nothing calls this directly
no test coverage detected