blob: 71358bbbef4188671650f269404ed779e23cd4f9 [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.
narpra01db2b1602019-01-23 15:23:11 +000040template <typename Float16Workload, typename Float32Workload, typename Uint8Workload, typename Int32Workload,
kevmay012b4d88e2019-01-24 14:05:09 +000041 typename BooleanWorkload, typename QueueDescriptorType, typename... Args>
Aron Virginas-Tara8e06ed2018-10-19 16:46:15 +010042std::unique_ptr<IWorkload> MakeWorkloadHelper(const QueueDescriptorType& descriptor,
43 const WorkloadInfo& info,
44 Args&&... args)
telsoa014fcda012018-03-09 14:13:49 +000045{
46 const DataType dataType = !info.m_InputTensorInfos.empty() ?
47 info.m_InputTensorInfos[0].GetDataType()
48 : info.m_OutputTensorInfos[0].GetDataType();
49
telsoa014fcda012018-03-09 14:13:49 +000050 switch (dataType)
51 {
telsoa01c577f2c2018-08-31 09:22:23 +010052 case DataType::Float16:
53 return MakeWorkloadForType<Float16Workload>::Func(descriptor, info, std::forward<Args>(args)...);
telsoa014fcda012018-03-09 14:13:49 +000054 case DataType::Float32:
surmeh013537c2c2018-05-18 16:31:43 +010055 return MakeWorkloadForType<Float32Workload>::Func(descriptor, info, std::forward<Args>(args)...);
telsoa014fcda012018-03-09 14:13:49 +000056 case DataType::QuantisedAsymm8:
surmeh013537c2c2018-05-18 16:31:43 +010057 return MakeWorkloadForType<Uint8Workload>::Func(descriptor, info, std::forward<Args>(args)...);
narpra01db2b1602019-01-23 15:23:11 +000058 case DataType::Signed32:
59 return MakeWorkloadForType<Int32Workload>::Func(descriptor, info, std::forward<Args>(args)...);
kevmay012b4d88e2019-01-24 14:05:09 +000060 case DataType::Boolean:
61 return MakeWorkloadForType<BooleanWorkload>::Func(descriptor, info, std::forward<Args>(args)...);
Narumol Prangnawaratf9ac3fd2019-07-03 14:55:57 +010062 case DataType::QuantisedSymm16:
63 return nullptr;
telsoa014fcda012018-03-09 14:13:49 +000064 default:
65 BOOST_ASSERT_MSG(false, "Unknown DataType.");
66 return nullptr;
67 }
68}
69
telsoa01c577f2c2018-08-31 09:22:23 +010070// Makes a workload for one the specified types based on the data type requirements of the tensorinfo.
kevmay012b4d88e2019-01-24 14:05:09 +000071// Calling this method is the equivalent of calling the five typed MakeWorkload method with <FloatWorkload,
72// FloatWorkload, Uint8Workload, NullWorkload, NullWorkload>.
telsoa01c577f2c2018-08-31 09:22:23 +010073// Specify type void as the WorkloadType for unsupported DataType/WorkloadType combos.
74template <typename FloatWorkload, typename Uint8Workload, typename QueueDescriptorType, typename... Args>
Aron Virginas-Tara8e06ed2018-10-19 16:46:15 +010075std::unique_ptr<IWorkload> MakeWorkloadHelper(const QueueDescriptorType& descriptor,
76 const WorkloadInfo& info,
77 Args&&... args)
telsoa01c577f2c2018-08-31 09:22:23 +010078{
kevmay012b4d88e2019-01-24 14:05:09 +000079 return MakeWorkloadHelper<FloatWorkload, FloatWorkload, Uint8Workload, NullWorkload, NullWorkload>(
80 descriptor,
81 info,
82 std::forward<Args>(args)...);
telsoa01c577f2c2018-08-31 09:22:23 +010083}
84
telsoa014fcda012018-03-09 14:13:49 +000085} //namespace
surmeh013537c2c2018-05-18 16:31:43 +010086} //namespace armnn