| 307 | } |
| 308 | |
| 309 | Status Scope::ToGraphDef(GraphDef* gdef) const { |
| 310 | if (!ok()) { |
| 311 | return *impl()->status_; |
| 312 | } |
| 313 | graph()->ToGraphDef(gdef); |
| 314 | return Status::OK(); |
| 315 | } |
| 316 | |
| 317 | Status Scope::ToGraph(Graph* g, GraphConstructorOptions opts) const { |
| 318 | if (ok()) { |