blob: 533855c295fbb0f36f1dac7381f5bcb572af9c59 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "ClPadWorkload.hpp"
#include <cl/ClTensorHandle.hpp>
#include <aclCommon/ArmComputeTensorUtils.hpp>
#include <arm_compute/core/Types.h>
#include "ClWorkloadUtils.hpp"
namespace armnn
{
using namespace armcomputetensorutils;
ClPadWorkload::ClPadWorkload(const PadQueueDescriptor& descriptor,
const WorkloadInfo& info,
const arm_compute::CLCompileContext& clCompileContext)
: BaseWorkload<PadQueueDescriptor>(descriptor, info)
{
this->m_Data.ValidateInputsOutputs("ClPadWorkload", 1, 1);
arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(this->m_Data.m_Inputs[0])->GetTensor();
arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(this->m_Data.m_Outputs[0])->GetTensor();
std::vector<std::pair<unsigned int, unsigned int>> reversed_PadList(descriptor.m_Parameters.m_PadList.size());
std::reverse_copy(std::begin(descriptor.m_Parameters.m_PadList),
std::end(descriptor.m_Parameters.m_PadList),
std::begin(reversed_PadList));
arm_compute::PaddingList padList = static_cast<arm_compute::PaddingList>(reversed_PadList);
arm_compute::PixelValue pixelValue = GetPixelValue(input, descriptor.m_Parameters.m_PadValue);
m_Layer.configure(clCompileContext, &input, &output, padList, pixelValue);
}
void ClPadWorkload::Execute() const
{
ARMNN_SCOPED_PROFILING_EVENT_CL("ClPadWorkload_Execute");
RunClFunction(m_Layer, CHECK_LOCATION());
}
arm_compute::Status ClPadValidate(const TensorInfo& input,
const TensorInfo& output,
const PadDescriptor& descriptor)
{
const arm_compute::TensorInfo aclInputInfo = BuildArmComputeTensorInfo(input);
const arm_compute::TensorInfo aclOutputInfo = BuildArmComputeTensorInfo(output);
std::vector<std::pair<unsigned int, unsigned int>> reversed_PadList(descriptor.m_PadList.size());
std::reverse_copy(std::begin(descriptor.m_PadList),
std::end(descriptor.m_PadList),
std::begin(reversed_PadList));
arm_compute::PaddingList padList = static_cast<arm_compute::PaddingList>(reversed_PadList);
const arm_compute::Status aclStatus = arm_compute::CLPadLayer::validate(&aclInputInfo,
&aclOutputInfo,
padList);
return aclStatus;
}
} // namespace armnn