| 266 | void IRContext::cacheInputOutputTensor(size_t uuid, const val_ptr_t& tensor_ir) { cached_inputs_outputs_[uuid] = tensor_ir; } |
| 267 | |
| 268 | val_ptr_t IRContext::getCacheInputOutputTensor(size_t uuid) { return cached_inputs_outputs_[uuid]; } |
| 269 | |
| 270 | std::unordered_map<size_t, val_ptr_t>& IRContext::getAllCachedInputOutputTensorIRs() { return cached_inputs_outputs_; } |
| 271 |
no outgoing calls
no test coverage detected