blob: 5f8175916a504d037372e636479a245dca0559d7 [file] [log] [blame]
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "../../1.2/ArmnnDriverImpl.hpp"
7
8#include "Utils.h"
9
10#include <boost/test/unit_test.hpp>
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010011
12#include <sys/system_properties.h>
13
14#include <cfloat>
15
16using namespace std;
17
18struct CapabilitiesFixture
19{
20 CapabilitiesFixture()
21 {
Ferran Balaguer3892a362019-07-25 13:47:52 +010022 // CleanUp before the execution of each test
23 CleanUp();
24 }
25
26 ~CapabilitiesFixture()
27 {
28 // CleanUp after the execution of each test
29 CleanUp();
30 }
31
32 void CleanUp()
33 {
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010034 const char* nullStr = "";
35
36 __system_property_set("Armnn.operandTypeTensorFloat32Performance.execTime", nullStr);
37 __system_property_set("Armnn.operandTypeTensorFloat32Performance.powerUsage", nullStr);
38 __system_property_set("Armnn.operandTypeFloat32Performance.execTime", nullStr);
39 __system_property_set("Armnn.operandTypeFloat32Performance.powerUsage", nullStr);
40 __system_property_set("Armnn.operandTypeTensorFloat16Performance.execTime", nullStr);
41 __system_property_set("Armnn.operandTypeTensorFloat16Performance.powerUsage", nullStr);
42 __system_property_set("Armnn.operandTypeFloat16Performance.execTime", nullStr);
43 __system_property_set("Armnn.operandTypeFloat16Performance.powerUsage", nullStr);
44 __system_property_set("Armnn.operandTypeTensorQuant8AsymmPerformance.execTime", nullStr);
45 __system_property_set("Armnn.operandTypeTensorQuant8AsymmPerformance.powerUsage", nullStr);
46 __system_property_set("Armnn.operandTypeTensorQuant16SymmPerformance.execTime", nullStr);
47 __system_property_set("Armnn.operandTypeTensorQuant16SymmPerformance.powerUsage", nullStr);
48 __system_property_set("Armnn.operandTypeTensorInt32Performance.execTime", nullStr);
49 __system_property_set("Armnn.operandTypeTensorInt32Performance.powerUsage", nullStr);
50 __system_property_set("Armnn.operandTypeInt32Performance.execTime", nullStr);
51 __system_property_set("Armnn.operandTypeInt32Performance.powerUsage", nullStr);
Kevin May87cb7612019-11-11 17:30:35 +000052 __system_property_set("Armnn.operandTypeTensorQuant8SymmPerformance.execTime", nullStr);
53 __system_property_set("Armnn.operandTypeTensorQuant8SymmPerformance.powerUsage", nullStr);
54 __system_property_set("Armnn.operandTypeTensorQuant8SymmPerChannelPerformance.execTime", nullStr);
55 __system_property_set("Armnn.operandTypeTensorQuant8SymmPerChannelPerformance.powerUsage", nullStr);
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010056 }
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010057};
58
Kevin Mayec1e5b82020-02-26 17:00:39 +000059void CheckOperandType(const V1_2::Capabilities& capabilities, V1_2::OperandType type, float execTime, float powerUsage)
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010060{
Kevin Mayec1e5b82020-02-26 17:00:39 +000061 using namespace armnn_driver::hal_1_2;
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010062 PerformanceInfo perfInfo = android::nn::lookup(capabilities.operandPerformance, type);
63 BOOST_ASSERT(perfInfo.execTime == execTime);
64 BOOST_ASSERT(perfInfo.powerUsage == powerUsage);
65}
66
Ferran Balaguer3892a362019-07-25 13:47:52 +010067BOOST_FIXTURE_TEST_SUITE(CapabilitiesTests, CapabilitiesFixture)
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010068
69BOOST_AUTO_TEST_CASE(PerformanceCapabilitiesWithRuntime)
70{
71 using namespace armnn_driver::hal_1_2;
72 using namespace android::nn;
73
Kevin Mayec1e5b82020-02-26 17:00:39 +000074 auto getCapabilitiesFn = [&](V1_0::ErrorStatus error, const V1_2::Capabilities& capabilities)
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010075 {
Kevin Mayec1e5b82020-02-26 17:00:39 +000076 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_FLOAT32, 2.0f, 2.1f);
77 CheckOperandType(capabilities, V1_2::OperandType::FLOAT32, 2.2f, 2.3f);
78 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_FLOAT16, 2.4f, 2.5f);
79 CheckOperandType(capabilities, V1_2::OperandType::FLOAT16, 2.6f, 2.7f);
80 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT8_ASYMM, 2.8f, 2.9f);
81 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT16_SYMM, 3.0f, 3.1f);
82 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_INT32, 3.2f, 3.3f);
83 CheckOperandType(capabilities, V1_2::OperandType::INT32, 3.4f, 3.5f);
84 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT8_SYMM, 2.8f, 2.9f);
85 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT8_SYMM_PER_CHANNEL, 2.8f, 2.9f);
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010086
87 // Unsupported operands take FLT_MAX value
Kevin Mayec1e5b82020-02-26 17:00:39 +000088 CheckOperandType(capabilities, V1_2::OperandType::UINT32, FLT_MAX, FLT_MAX);
89 CheckOperandType(capabilities, V1_2::OperandType::BOOL, FLT_MAX, FLT_MAX);
90 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT16_ASYMM, FLT_MAX, FLT_MAX);
91 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_BOOL8, FLT_MAX, FLT_MAX);
92 CheckOperandType(capabilities, V1_2::OperandType::OEM, FLT_MAX, FLT_MAX);
93 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_OEM_BYTE, FLT_MAX, FLT_MAX);
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010094
Kevin Mayec1e5b82020-02-26 17:00:39 +000095 BOOST_ASSERT(error == V1_0::ErrorStatus::NONE);
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +010096 };
97
98 __system_property_set("Armnn.operandTypeTensorFloat32Performance.execTime", "2.0f");
99 __system_property_set("Armnn.operandTypeTensorFloat32Performance.powerUsage", "2.1f");
100 __system_property_set("Armnn.operandTypeFloat32Performance.execTime", "2.2f");
101 __system_property_set("Armnn.operandTypeFloat32Performance.powerUsage", "2.3f");
102 __system_property_set("Armnn.operandTypeTensorFloat16Performance.execTime", "2.4f");
103 __system_property_set("Armnn.operandTypeTensorFloat16Performance.powerUsage", "2.5f");
104 __system_property_set("Armnn.operandTypeFloat16Performance.execTime", "2.6f");
105 __system_property_set("Armnn.operandTypeFloat16Performance.powerUsage", "2.7f");
106 __system_property_set("Armnn.operandTypeTensorQuant8AsymmPerformance.execTime", "2.8f");
107 __system_property_set("Armnn.operandTypeTensorQuant8AsymmPerformance.powerUsage", "2.9f");
108 __system_property_set("Armnn.operandTypeTensorQuant16SymmPerformance.execTime", "3.0f");
109 __system_property_set("Armnn.operandTypeTensorQuant16SymmPerformance.powerUsage", "3.1f");
110 __system_property_set("Armnn.operandTypeTensorInt32Performance.execTime", "3.2f");
111 __system_property_set("Armnn.operandTypeTensorInt32Performance.powerUsage", "3.3f");
112 __system_property_set("Armnn.operandTypeInt32Performance.execTime", "3.4f");
113 __system_property_set("Armnn.operandTypeInt32Performance.powerUsage", "3.5f");
Kevin May87cb7612019-11-11 17:30:35 +0000114 __system_property_set("Armnn.operandTypeTensorQuant8SymmPerformance.execTime", "2.8f");
115 __system_property_set("Armnn.operandTypeTensorQuant8SymmPerformance.powerUsage", "2.9f");
116 __system_property_set("Armnn.operandTypeTensorQuant8SymmPerChannelPerformance.execTime", "2.8f");
117 __system_property_set("Armnn.operandTypeTensorQuant8SymmPerChannelPerformance.powerUsage", "2.9f");
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +0100118
119 armnn::IRuntime::CreationOptions options;
120 armnn::IRuntimePtr runtime(armnn::IRuntime::Create(options));
121
122 ArmnnDriverImpl::getCapabilities_1_2(runtime, getCapabilitiesFn);
123}
124
125BOOST_AUTO_TEST_CASE(PerformanceCapabilitiesUndefined)
126{
127 using namespace armnn_driver::hal_1_2;
128 using namespace android::nn;
129
130 float defaultValue = .1f;
131
Kevin Mayec1e5b82020-02-26 17:00:39 +0000132 auto getCapabilitiesFn = [&](V1_0::ErrorStatus error, const V1_2::Capabilities& capabilities)
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +0100133 {
Kevin Mayec1e5b82020-02-26 17:00:39 +0000134 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_FLOAT32, defaultValue, defaultValue);
135 CheckOperandType(capabilities, V1_2::OperandType::FLOAT32, defaultValue, defaultValue);
136 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_FLOAT16, defaultValue, defaultValue);
137 CheckOperandType(capabilities, V1_2::OperandType::FLOAT16, defaultValue, defaultValue);
138 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT8_ASYMM, defaultValue, defaultValue);
139 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT16_SYMM, defaultValue, defaultValue);
140 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_INT32, defaultValue, defaultValue);
141 CheckOperandType(capabilities, V1_2::OperandType::INT32, defaultValue, defaultValue);
142 CheckOperandType(capabilities,
143 V1_2::OperandType::TENSOR_QUANT8_SYMM_PER_CHANNEL,
144 defaultValue,
145 defaultValue);
146 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT8_SYMM, defaultValue, defaultValue);
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +0100147
148 // Unsupported operands take FLT_MAX value
Kevin Mayec1e5b82020-02-26 17:00:39 +0000149 CheckOperandType(capabilities, V1_2::OperandType::UINT32, FLT_MAX, FLT_MAX);
150 CheckOperandType(capabilities, V1_2::OperandType::BOOL, FLT_MAX, FLT_MAX);
151 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_QUANT16_ASYMM, FLT_MAX, FLT_MAX);
152 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_BOOL8, FLT_MAX, FLT_MAX);
153 CheckOperandType(capabilities, V1_2::OperandType::OEM, FLT_MAX, FLT_MAX);
154 CheckOperandType(capabilities, V1_2::OperandType::TENSOR_OEM_BYTE, FLT_MAX, FLT_MAX);
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +0100155
Kevin Mayec1e5b82020-02-26 17:00:39 +0000156 BOOST_ASSERT(error == V1_0::ErrorStatus::NONE);
Ferran Balaguerd7c8eb92019-07-01 13:37:44 +0100157 };
158
159 armnn::IRuntime::CreationOptions options;
160 armnn::IRuntimePtr runtime(armnn::IRuntime::Create(options));
161
162 ArmnnDriverImpl::getCapabilities_1_2(runtime, getCapabilitiesFn);
163}
164
165BOOST_AUTO_TEST_SUITE_END()