88 : NeonBaseWorkload<BatchToSpaceNdQueueDescriptor>(descriptor, info)
89{
90
92 descriptor.m_Parameters,
93 info,
94 this->GetGuid());
95
96 m_Data.ValidateInputsOutputs("NeonBatchToSpaceNdWorkload", 1, 1);
97
98 arm_compute::ITensor& input = PolymorphicPointerDowncast<IAclTensorHandle>(m_Data.m_Inputs[0])->GetTensor();
99 arm_compute::ITensor& output = PolymorphicPointerDowncast<IAclTensorHandle>(m_Data.m_Outputs[0])->GetTensor();
100
101 arm_compute::DataLayout aclDataLayout = ConvertDataLayout(m_Data.m_Parameters.m_DataLayout);
102 input.info()->set_data_layout(aclDataLayout);
103 output.info()->set_data_layout(aclDataLayout);
104
105 arm_compute::TensorInfo aclReshapeInputInfo = BuildArmComputeTensorInfo(
info.m_InputTensorInfos[0],
106 m_Data.m_Parameters.m_DataLayout);
107 arm_compute::TensorInfo aclReshapeOutputInfo = BuildArmComputeTensorInfo(
info.m_OutputTensorInfos[0],
108 m_Data.m_Parameters.m_DataLayout);
109
110 const unsigned int rank =
info.m_InputTensorInfos[0].GetNumDimensions();
111 if (rank == 3)
112 {
113 const arm_compute::TensorShape inputShape = input.info()->tensor_shape();
114 const arm_compute::TensorShape outputShape = output.info()->tensor_shape();
115
116
118 {
119
120 aclReshapeInputInfo.set_tensor_shape({inputShape.x(), 1, inputShape.y(), inputShape.z()});
121 aclReshapeOutputInfo.set_tensor_shape({outputShape.x(), 1, outputShape.y(), outputShape.z()});
122 }
124 {
125
126 aclReshapeInputInfo.set_tensor_shape({1, inputShape.x(), inputShape.y(), inputShape.z()});
127 aclReshapeOutputInfo.set_tensor_shape({1, outputShape.x(), outputShape.y(), outputShape.z()});
128 }
129 else
130 {
131 throw InvalidArgumentException(
"Unsupported or unknown DataLayout",
CHECK_LOCATION());
132 }
133
134 m_ReshapeInputTensor.allocator()->init(aclReshapeInputInfo);
135 m_ReshapeOutputTensor.allocator()->init(aclReshapeOutputInfo);
136
137 InitialiseArmComputeTensorEmpty(m_ReshapeInputTensor);
138 InitialiseArmComputeTensorEmpty(m_ReshapeOutputTensor);
139
140 m_LayerReshapeInput.reset(new arm_compute::NEReshapeLayer());
141 m_LayerReshapeOutput.reset(new arm_compute::NEReshapeLayer());
142
143 m_LayerReshapeInput->configure(&input, &m_ReshapeInputTensor);
144 m_LayerReshapeOutput->configure(&m_ReshapeOutputTensor, &output);
145 }
146
147
149 int32_t blockWidth = (rank == 3) ? 1 : armnn::
numeric_cast<int32_t>(descriptor.m_Parameters.m_BlockShape[1]);
150
151 const arm_compute::CropInfo cropInfo = BuildArmComputeCropInfo(descriptor.m_Parameters, rank);
152
153 m_Layer.reset(new arm_compute::NEBatchToSpaceLayer());
154 m_Layer->configure(rank == 3 ? &m_ReshapeInputTensor : &input,
155 blockWidth,
156 blockHeight,
157 rank == 3 ? &m_ReshapeOutputTensor : &output,
158 cropInfo);
159 m_Layer->prepare();
160}
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
std::enable_if_t< std::is_unsigned< Source >::value &&std::is_unsigned< Dest >::value, Dest > numeric_cast(Source source)