| 58 | return *this; |
| 59 | } |
| 60 | GraphDefBuilder::Options GraphDefBuilder::Options::WithControlInputsImpl( |
| 61 | gtl::ArraySlice<Node*> control_inputs) { |
| 62 | control_inputs_.insert(control_inputs_.end(), control_inputs.begin(), |
| 63 | control_inputs.end()); |
| 64 | return *this; |
| 65 | } |
| 66 | |
| 67 | Status GraphDefBuilder::ToGraphDef(GraphDef* graph_def) const { |
| 68 | if (status_.ok()) { |
no test coverage detected