blob: 29d98bf0eb253b8488eb0f83191b71645c778821 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5
6#include "ClPermuteWorkload.hpp"
7#include "backends/ClTensorHandle.hpp"
8#include "backends/ArmComputeTensorUtils.hpp"
9
10#include <arm_compute/core/Error.h>
11
Matthew Bentham14e46692018-09-20 15:35:30 +010012#include "ClWorkloadUtils.hpp"
13
telsoa014fcda012018-03-09 14:13:49 +000014namespace armnn
15{
16
17arm_compute::Status ClPermuteWorkloadValidate(const PermuteDescriptor& descriptor)
18{
19 const armnn::PermutationVector& perm = descriptor.m_DimMappings;
20
21 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!perm.IsEqual({ 0U, 3U, 1U, 2U })
22 && !perm.IsEqual({ 0U, 2U, 3U, 1U })
23 && !perm.IsEqual({ 3U, 2U, 0U, 1U }),
24 "Only [0, 3, 1, 2], [0, 2, 3, 1] and [3, 2, 0, 1] permutations are supported");
25
26 return arm_compute::Status{};
27}
28
telsoa01c577f2c2018-08-31 09:22:23 +010029template <armnn::DataType... DataTypes>
30ClPermuteWorkload<DataTypes...>::ClPermuteWorkload(const PermuteQueueDescriptor& descriptor,
telsoa014fcda012018-03-09 14:13:49 +000031 const WorkloadInfo& info)
telsoa01c577f2c2018-08-31 09:22:23 +010032 : TypedWorkload<PermuteQueueDescriptor, DataTypes...>(descriptor, info)
telsoa014fcda012018-03-09 14:13:49 +000033{
34 using armcomputetensorutils::BuildArmComputePermutationVector;
35
36 m_Data.ValidateInputsOutputs(GetName(), 1, 1);
37
38 const arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
39 arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
40 const armnn::PermutationVector& mappings = m_Data.m_Parameters.m_DimMappings;
41
telsoa01c577f2c2018-08-31 09:22:23 +010042 // Run the layer.
telsoa014fcda012018-03-09 14:13:49 +000043 m_PermuteFunction.configure(&input, &output, BuildArmComputePermutationVector(mappings));
44}
45
telsoa01c577f2c2018-08-31 09:22:23 +010046template <armnn::DataType... DataTypes>
47void ClPermuteWorkload<DataTypes...>::Execute() const
telsoa014fcda012018-03-09 14:13:49 +000048{
telsoa01c577f2c2018-08-31 09:22:23 +010049 ARMNN_SCOPED_PROFILING_EVENT_CL( GetName() + "_Execute");
telsoa014fcda012018-03-09 14:13:49 +000050 m_PermuteFunction.run();
51}
52
telsoa01c577f2c2018-08-31 09:22:23 +010053template class ClPermuteWorkload<DataType::Float16, DataType::Float32>;
telsoa014fcda012018-03-09 14:13:49 +000054template class ClPermuteWorkload<DataType::QuantisedAsymm8>;
55
56} // namespace armnn