| 31 | } |
| 32 | |
| 33 | void GetTensor(const Scope& scope, Output tensor, Tensor* out) { |
| 34 | std::vector<Tensor> outputs; |
| 35 | GetTensors(scope, {std::move(tensor)}, &outputs); |
| 36 | *out = outputs[0]; |
| 37 | } |
| 38 | |
| 39 | void GetTensors(const Scope& scope, const std::vector<Output>& assign_vars, |
| 40 | const OutputList& tensors, std::vector<Tensor>* out) { |
no test coverage detected