blob: 281a65a21e76c6b0b668ba432bb85694a28346bd [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#pragma once
6
7namespace armnn
8{
9namespace
10{
11
telsoa01c577f2c2018-08-31 09:22:23 +010012// Make a workload of the specified WorkloadType.
telsoa014fcda012018-03-09 14:13:49 +000013template<typename WorkloadType>
14struct MakeWorkloadForType
15{
surmeh013537c2c2018-05-18 16:31:43 +010016 template<typename QueueDescriptorType, typename... Args>
17 static std::unique_ptr<WorkloadType> Func(const QueueDescriptorType& descriptor,
18 const WorkloadInfo& info,
19 Args&&... args)
telsoa014fcda012018-03-09 14:13:49 +000020 {
surmeh013537c2c2018-05-18 16:31:43 +010021 return std::make_unique<WorkloadType>(descriptor, info, std::forward<Args>(args)...);
telsoa014fcda012018-03-09 14:13:49 +000022 }
23};
24
25// Specialization for void workload type used for unsupported workloads.
26template<>
27struct MakeWorkloadForType<NullWorkload>
28{
surmeh013537c2c2018-05-18 16:31:43 +010029 template<typename QueueDescriptorType, typename... Args>
30 static std::unique_ptr<NullWorkload> Func(const QueueDescriptorType& descriptor,
31 const WorkloadInfo& info,
32 Args&&... args)
telsoa014fcda012018-03-09 14:13:49 +000033 {
34 return nullptr;
35 }
36};
37
38// Makes a workload for one the specified types based on the data type requirements of the tensorinfo.
39// Specify type void as the WorkloadType for unsupported DataType/WorkloadType combos.
telsoa01c577f2c2018-08-31 09:22:23 +010040template <typename Float16Workload, typename Float32Workload, typename Uint8Workload, typename QueueDescriptorType,
41 typename... Args>
surmeh013537c2c2018-05-18 16:31:43 +010042std::unique_ptr<IWorkload> MakeWorkload(const QueueDescriptorType& descriptor, const WorkloadInfo& info, Args&&... args)
telsoa014fcda012018-03-09 14:13:49 +000043{
44 const DataType dataType = !info.m_InputTensorInfos.empty() ?
45 info.m_InputTensorInfos[0].GetDataType()
46 : info.m_OutputTensorInfos[0].GetDataType();
47
48 BOOST_ASSERT(info.m_InputTensorInfos.empty() || info.m_OutputTensorInfos.empty()
49 || info.m_InputTensorInfos[0].GetDataType() == info.m_OutputTensorInfos[0].GetDataType());
50
51 switch (dataType)
52 {
telsoa01c577f2c2018-08-31 09:22:23 +010053 case DataType::Float16:
54 return MakeWorkloadForType<Float16Workload>::Func(descriptor, info, std::forward<Args>(args)...);
telsoa014fcda012018-03-09 14:13:49 +000055 case DataType::Float32:
surmeh013537c2c2018-05-18 16:31:43 +010056 return MakeWorkloadForType<Float32Workload>::Func(descriptor, info, std::forward<Args>(args)...);
telsoa014fcda012018-03-09 14:13:49 +000057 case DataType::QuantisedAsymm8:
surmeh013537c2c2018-05-18 16:31:43 +010058 return MakeWorkloadForType<Uint8Workload>::Func(descriptor, info, std::forward<Args>(args)...);
telsoa014fcda012018-03-09 14:13:49 +000059 default:
60 BOOST_ASSERT_MSG(false, "Unknown DataType.");
61 return nullptr;
62 }
63}
64
telsoa01c577f2c2018-08-31 09:22:23 +010065// Makes a workload for one the specified types based on the data type requirements of the tensorinfo.
66// Calling this method is the equivalent of calling the three typed MakeWorkload method with <FloatWorkload,
67// FloatWorkload, Uint8Workload>.
68// Specify type void as the WorkloadType for unsupported DataType/WorkloadType combos.
69template <typename FloatWorkload, typename Uint8Workload, typename QueueDescriptorType, typename... Args>
70std::unique_ptr<IWorkload> MakeWorkload(const QueueDescriptorType& descriptor, const WorkloadInfo& info, Args&&... args)
71{
72 return MakeWorkload<FloatWorkload, FloatWorkload, Uint8Workload>(descriptor, info,
73 std::forward<Args>(args)...);
74}
75
76
telsoa014fcda012018-03-09 14:13:49 +000077} //namespace
surmeh013537c2c2018-05-18 16:31:43 +010078} //namespace armnn