| 178 | } |
| 179 | |
| 180 | uint8_t *TensorAllocator::lock() |
| 181 | { |
| 182 | ARM_COMPUTE_ERROR_ON(_memory.region() == nullptr); |
| 183 | return reinterpret_cast<uint8_t *>(_memory.region()->buffer()); |
| 184 | } |
| 185 | |
| 186 | void TensorAllocator::unlock() |
| 187 | { |
no test coverage detected