| 136 | tensor.unmap(); |
| 137 | } |
| 138 | void init_tensor(const TensorShape shape, CLTensor &tensor, DataType type, DataLayout layout) |
| 139 | { |
| 140 | tensor.allocator()->init(TensorInfo(shape, 1, type).set_data_layout(layout)); |
| 141 | } |
| 142 | |
| 143 | CLTensor tensor_nchw{}; |
| 144 | CLTensor tensor_nhwc{}; |
no test coverage detected