| 168 | } |
| 169 | |
| 170 | Status KernelAndDeviceOp::Run(const gtl::InlinedVector<TensorValue, 4>& inputs, |
| 171 | std::vector<Tensor>* outputs, |
| 172 | NodeExecStats* stats, StepStats* step_stats, |
| 173 | GraphCollector* graph_collector, |
| 174 | CancellationManager* cancellation_manager) { |
| 175 | ScopedStepContainer step_container(0, [this](const string& name) { |
| 176 | device_->resource_manager()->Cleanup(name).IgnoreError(); |
| 177 | }); |
| 178 | return this->Run(&step_container, inputs, outputs, stats, step_stats, |
| 179 | graph_collector, cancellation_manager); |
| 180 | } |
| 181 | |
| 182 | Status KernelAndDeviceFunc::Run( |
| 183 | const gtl::InlinedVector<TensorValue, 4>& inputs, |
nothing calls this directly
no test coverage detected