11 #include <arm_compute/core/Types.h>
17 using namespace armcomputetensorutils;
21 const arm_compute::CLCompileContext& clCompileContext)
35 std::vector<std::pair<unsigned int, unsigned int>> reversed_PadList(descriptor.
m_Parameters.
m_PadList.size());
39 std::begin(reversed_PadList));
41 arm_compute::PaddingList padList =
static_cast<arm_compute::PaddingList
>(reversed_PadList);
47 m_Layer.configure(clCompileContext,
66 const arm_compute::TensorInfo aclInputInfo = BuildArmComputeTensorInfo(input);
67 const arm_compute::TensorInfo aclOutputInfo = BuildArmComputeTensorInfo(output);
69 std::vector<std::pair<unsigned int, unsigned int>> reversed_PadList(descriptor.
m_PadList.size());
71 std::reverse_copy(std::begin(descriptor.
m_PadList),
73 std::begin(reversed_PadList));
75 arm_compute::PaddingList padList =
static_cast<arm_compute::PaddingList
>(reversed_PadList);
78 arm_compute::PixelValue pixelValue = GetPixelValue(&aclInputInfo, descriptor.
m_PadValue);
80 arm_compute::CLPadLayer::validate(&aclInputInfo,