| 239 | } |
| 240 | |
| 241 | XrtTfContext::Operation* XrtTfContext::LookupOperation(OperationId id) { |
| 242 | auto it = operations_.find(id); |
| 243 | CHECK(it != operations_.end()) << id; |
| 244 | return &it->second; |
| 245 | } |
| 246 | |
| 247 | std::vector<XrtTensorHandle> XrtTfContext::EnqueueOp( |
| 248 | absl::string_view name, absl::Span<const XrtTensorHandle* const> inputs, |