| 259 | DeviceTypes IRContext::getDevice() { return device_type_; } |
| 260 | |
| 261 | bool IRContext::isCacheInputOutputTensor(size_t uuid) { |
| 262 | if (cached_inputs_outputs_.count(uuid)) { return true; } |
| 263 | return false; |
| 264 | } |
| 265 | |
| 266 | void IRContext::cacheInputOutputTensor(size_t uuid, const val_ptr_t& tensor_ir) { cached_inputs_outputs_[uuid] = tensor_ir; } |
| 267 |
no outgoing calls
no test coverage detected