| 399 | } |
| 400 | |
| 401 | Status AddSymbolicGradients(gtl::ArraySlice<NodeOut> y_node_outputs, |
| 402 | gtl::ArraySlice<NodeOut> x_node_outputs, |
| 403 | gtl::ArraySlice<NodeOut> y_grad_node_outputs, |
| 404 | std::vector<NodeOut>* x_grad_node_outputs, |
| 405 | Graph* graph) { |
| 406 | SymbolicGradientBuilder builder(y_node_outputs, x_node_outputs, |
| 407 | y_grad_node_outputs, x_grad_node_outputs, |
| 408 | graph); |
| 409 | return builder.Compute(); |
| 410 | } |
| 411 | |
| 412 | } // end namespace tensorflow |
no test coverage detected