blob: af5836e908c96dbc02d38215a20423ef3e8723d6 [file]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "ClDepthwiseConvolutionUint8Workload.hpp"
#include "backends/CpuTensorHandle.hpp"
#include "ClWorkloadUtils.hpp"
namespace armnn
{
ClDepthwiseConvolutionUint8Workload::ClDepthwiseConvolutionUint8Workload(
const DepthwiseConvolution2dQueueDescriptor& descriptor,
const WorkloadInfo& info)
: ClDepthwiseConvolutionBaseWorkload(descriptor, info)
{
InitialiseArmComputeClTensorData(*m_KernelTensor, m_Data.m_Weight->template GetConstTensor<uint8_t>());
if (m_BiasTensor)
{
InitialiseArmComputeClTensorData(*m_BiasTensor, m_Data.m_Bias->template GetConstTensor<int32_t>());
}
m_DepthwiseConvolutionLayer->prepare();
FreeUnusedTensors();
}
void ClDepthwiseConvolutionUint8Workload::Execute() const
{
ARMNN_SCOPED_PROFILING_EVENT_CL("ClDepthwiseConvolutionUint8Workload_Execute");
BOOST_ASSERT(m_DepthwiseConvolutionLayer);
m_DepthwiseConvolutionLayer->run();
}
} //namespace armnn