| 243 | } |
| 244 | |
| 245 | void FunctionLibraryRuntimeOverlay::Run(const Options& opts, Handle handle, |
| 246 | gtl::ArraySlice<Tensor> args, |
| 247 | std::vector<Tensor>* rets, |
| 248 | DoneCallback done) { |
| 249 | base_flr_->Run(opts, handle, args, rets, std::move(done)); |
| 250 | } |
| 251 | |
| 252 | void FunctionLibraryRuntimeOverlay::Run(const Options& opts, Handle handle, |
| 253 | CallFrameInterface* call_frame, |
no test coverage detected