| 7 | namespace proxy_graph_detail { |
| 8 | |
| 9 | EncodedSubgraph make_backward_graph( |
| 10 | const OpDef& def, const SmallVector<LogicalTensorDesc>& inputs, |
| 11 | const SmallVector<bool>& input_requires_grad, |
| 12 | const SmallVector<bool>& output_has_grad) { |
| 13 | return ProxyGraph::get_default_graph()->make_backward_graph( |
| 14 | def, inputs, input_requires_grad, output_has_grad); |
| 15 | } |
| 16 | |
| 17 | } // namespace proxy_graph_detail |
| 18 | } // namespace imperative |
nothing calls this directly
no test coverage detected