| 1007 | } |
| 1008 | |
| 1009 | Status DirectSession::Run(const NamedTensorList& inputs, |
| 1010 | const std::vector<string>& output_names, |
| 1011 | const std::vector<string>& target_nodes, |
| 1012 | std::vector<Tensor>* outputs) { |
| 1013 | RunMetadata run_metadata; |
| 1014 | return Run(RunOptions(), inputs, output_names, target_nodes, outputs, |
| 1015 | &run_metadata); |
| 1016 | } |
| 1017 | |
| 1018 | Status DirectSession::CreateDebuggerState( |
| 1019 | const CallableOptions& callable_options, int64 global_step, |
nothing calls this directly
no test coverage detected