| 181 | } |
| 182 | |
| 183 | void UpdateConstantTensorOutputs(const armnn::TensorInfo& inputInfo, armnn::TensorInfo& outputInfo) |
| 184 | { |
| 185 | // If input tensor info is constant and output tensor info shape is not specified |
| 186 | // set the output shape from input shape |
| 187 | if (inputInfo.IsConstant() && outputInfo.GetShape().GetDimensionality() == armnn::Dimensionality::NotSpecified) |
| 188 | { |
| 189 | outputInfo.SetShape(inputInfo.GetShape()); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | void SetupConcatViewOrigin(const armnn::TensorInfo& inputTensorInfo, |
| 194 | armnn::OriginsDescriptor& concatDescriptor, |
no test coverage detected