| 56 | } // namespace |
| 57 | |
| 58 | SubTensorInfo::SubTensorInfo() |
| 59 | : _parent(nullptr), |
| 60 | _tensor_shape(), |
| 61 | _dims_state(), |
| 62 | _coords(), |
| 63 | _valid_region{Coordinates(), _tensor_shape}, |
| 64 | _extend_parent(false), |
| 65 | _lock_paddings(false) |
| 66 | { |
| 67 | _dims_state.fill(ITensorInfo::get_static_state_value()); |
| 68 | } |
| 69 | |
| 70 | SubTensorInfo::SubTensorInfo(ITensorInfo *parent, TensorShape tensor_shape, Coordinates coords, bool extend_parent) |
| 71 | : _parent(parent), |
nothing calls this directly
no test coverage detected