| 28 | using namespace arm_compute; |
| 29 | |
| 30 | SubTensor::SubTensor() : _parent(nullptr), _info() |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | SubTensor::SubTensor(ITensor *parent, const TensorShape &tensor_shape, const Coordinates &coords, bool extend_parent) |
| 35 | : _parent(nullptr), _info() |
nothing calls this directly
no test coverage detected