blob: 512a2a06a1351e5cd27be33d454bd4d640f2fd19 [file] [log] [blame]
Davide Grohmannf0364232022-06-16 17:42:58 +02001/*
Mikael Olssonc4ae2182023-10-12 15:29:30 +02002 * SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
Davide Grohmannf0364232022-06-16 17:42:58 +02003 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the License); you may
6 * not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <ethosu.hpp>
19#include <uapi/ethosu.h>
20
21#include <cstring>
Mikael Olsson07545152023-10-17 13:05:38 +020022#include <errno.h>
Davide Grohmannf0364232022-06-16 17:42:58 +020023#include <iostream>
24#include <list>
25#include <memory>
26#include <sstream>
27#include <stdio.h>
28#include <string>
29#include <unistd.h>
30
31#include "input.h"
32#include "model.h"
33#include "output.h"
Davide Grohmann6d2e5b72022-08-24 17:01:40 +020034#include "test_assertions.hpp"
Davide Grohmannf0364232022-06-16 17:42:58 +020035
36using namespace EthosU;
37
38namespace {
39
40int64_t defaultTimeout = 60000000000;
41
Davide Grohmannf0364232022-06-16 17:42:58 +020042void testPing(const Device &device) {
43 int r;
44 try {
45 r = device.ioctl(ETHOSU_IOCTL_PING);
46 } catch (std::exception &e) { throw TestFailureException("Ping test: ", e.what()); }
47
48 TEST_ASSERT(r == 0);
49}
50
Mikael Olsson8f918c62023-10-12 15:30:32 +020051void testDriverVersion(const Device &device) {
52 int r;
53 struct ethosu_uapi_kernel_driver_version version = {};
54 try {
55 r = device.ioctl(ETHOSU_IOCTL_DRIVER_VERSION_GET, &version);
56 } catch (std::exception &e) { throw TestFailureException("Driver version test: ", e.what()); }
57
58 TEST_ASSERT(r == 0);
59 TEST_ASSERT(version.major == ETHOSU_KERNEL_DRIVER_VERSION_MAJOR);
60 TEST_ASSERT(version.minor == ETHOSU_KERNEL_DRIVER_VERSION_MINOR);
61 TEST_ASSERT(version.patch == ETHOSU_KERNEL_DRIVER_VERSION_PATCH);
62}
63
Davide Grohmannf0364232022-06-16 17:42:58 +020064void testCapabilties(const Device &device) {
65 Capabilities capabilities;
66 try {
67 capabilities = device.capabilities();
68 } catch (std::exception &e) { throw TestFailureException("Capabilities test: ", e.what()); }
69
70 TEST_ASSERT(capabilities.hwId.architecture > SemanticVersion());
71}
72
Mikael Olsson07545152023-10-17 13:05:38 +020073void testBufferSeek(const Device &device) {
74 try {
75 Buffer buf{device, 1024};
76
77 // SEEK_END should return the size of the buffer
78 TEST_ASSERT(lseek(buf.getFd(), 0, SEEK_END) == 1024);
79
80 // SEEK_SET is supported when moving the file pointer to the start
81 TEST_ASSERT(lseek(buf.getFd(), 0, SEEK_SET) == 0);
82
83 // SEEK_CUR is not supported
84 errno = 0;
85 TEST_ASSERT(lseek(buf.getFd(), 0, SEEK_CUR) == -1);
86 TEST_ASSERT(errno == EINVAL);
87
88 // Non-zero offset is not supported
89 errno = 0;
90 TEST_ASSERT(lseek(buf.getFd(), 1, SEEK_CUR) == -1);
91 TEST_ASSERT(errno == EINVAL);
92
93 errno = 0;
94 TEST_ASSERT(lseek(buf.getFd(), 2, SEEK_END) == -1);
95 TEST_ASSERT(errno == EINVAL);
96
97 errno = 0;
98 TEST_ASSERT(lseek(buf.getFd(), 3, SEEK_SET) == -1);
99 TEST_ASSERT(errno == EINVAL);
100 } catch (std::exception &e) { throw TestFailureException("Buffer seek test: ", e.what()); }
101}
102
Davide Grohmannf0364232022-06-16 17:42:58 +0200103void testNetworkInfoNotExistentIndex(const Device &device) {
104 try {
105 Network(device, 0);
106 FAIL();
107 } catch (Exception &e) {
108 // good it should have thrown
109 } catch (std::exception &e) { throw TestFailureException("NetworkInfo no index test: ", e.what()); }
110}
111
112void testNetworkInfoBuffer(const Device &device) {
113 try {
Mikael Olssonc081e592023-10-30 11:10:56 +0100114 Network network(device, networkModelData, sizeof(networkModelData));
Davide Grohmannf0364232022-06-16 17:42:58 +0200115 TEST_ASSERT(network.getIfmDims().size() == 1);
116 TEST_ASSERT(network.getOfmDims().size() == 1);
117 } catch (std::exception &e) { throw TestFailureException("NetworkInfo buffer test: ", e.what()); }
118}
119
120void testNetworkInfoUnparsableBuffer(const Device &device) {
121 try {
Davide Grohmannf0364232022-06-16 17:42:58 +0200122 try {
Mikael Olssonc081e592023-10-30 11:10:56 +0100123 Network network(device, networkModelData + sizeof(networkModelData) / 4, sizeof(networkModelData) / 4);
Davide Grohmannf0364232022-06-16 17:42:58 +0200124 FAIL();
125 } catch (Exception) {
126 // good, it should have thrown!
127 }
128 } catch (std::exception &e) { throw TestFailureException("NetworkInfo unparsable buffer test: ", e.what()); }
129}
130
Mikael Olsson45d47992023-10-12 15:32:56 +0200131void testNetworkInvalidType(const Device &device) {
132 const std::string expected_error =
133 std::string("IOCTL cmd=") + std::to_string(ETHOSU_IOCTL_NETWORK_CREATE) + " failed: " + std::strerror(EINVAL);
134 struct ethosu_uapi_network_create net_req = {};
135 net_req.type = ETHOSU_UAPI_NETWORK_INDEX + 1;
136 try {
137 int r = device.ioctl(ETHOSU_IOCTL_NETWORK_CREATE, &net_req);
138 FAIL();
139 } catch (Exception &e) {
140 // The call is expected to throw
141 TEST_ASSERT(expected_error.compare(e.what()) == 0);
142 } catch (std::exception &e) { throw TestFailureException("NetworkCreate invalid type test: ", e.what()); }
143}
144
Mikael Olssonc081e592023-10-30 11:10:56 +0100145void testNetworkInvalidDataPtr(const Device &device) {
146 const std::string expected_error =
147 std::string("IOCTL cmd=") + std::to_string(ETHOSU_IOCTL_NETWORK_CREATE) + " failed: " + std::strerror(EINVAL);
148 struct ethosu_uapi_network_create net_req = {};
149 net_req.type = ETHOSU_UAPI_NETWORK_USER_BUFFER;
150 net_req.network.data_ptr = 0U;
151 net_req.network.size = 128U;
152 try {
153 int r = device.ioctl(ETHOSU_IOCTL_NETWORK_CREATE, &net_req);
154 FAIL();
155 } catch (Exception &e) {
156 // The call is expected to throw
157 TEST_ASSERT(expected_error.compare(e.what()) == 0);
158 } catch (std::exception &e) { throw TestFailureException("NetworkCreate invalid data ptr: ", e.what()); }
159}
160
161void testNetworkInvalidDataSize(const Device &device) {
162 const std::string expected_error =
163 std::string("IOCTL cmd=") + std::to_string(ETHOSU_IOCTL_NETWORK_CREATE) + " failed: " + std::strerror(EINVAL);
164 struct ethosu_uapi_network_create net_req = {};
165 net_req.type = ETHOSU_UAPI_NETWORK_USER_BUFFER;
166 net_req.network.data_ptr = reinterpret_cast<uintptr_t>(networkModelData);
167 net_req.network.size = 0U;
168 try {
169 int r = device.ioctl(ETHOSU_IOCTL_NETWORK_CREATE, &net_req);
170 FAIL();
171 } catch (Exception &e) {
172 // The call is expected to throw
173 TEST_ASSERT(expected_error.compare(e.what()) == 0);
174 } catch (std::exception &e) { throw TestFailureException("NetworkCreate invalid data size: ", e.what()); }
175}
176
Davide Grohmannf0364232022-06-16 17:42:58 +0200177void testRunInferenceBuffer(const Device &device) {
178 try {
Mikael Olssonc081e592023-10-30 11:10:56 +0100179 auto network = std::make_shared<Network>(device, networkModelData, sizeof(networkModelData));
Davide Grohmannf0364232022-06-16 17:42:58 +0200180
181 std::vector<std::shared_ptr<Buffer>> inputBuffers;
182 std::vector<std::shared_ptr<Buffer>> outputBuffers;
183
184 auto inputBuffer = std::make_shared<Buffer>(device, sizeof(inputData));
Davide Grohmannf0364232022-06-16 17:42:58 +0200185 std::memcpy(inputBuffer->data(), inputData, sizeof(inputData));
186
187 inputBuffers.push_back(inputBuffer);
188 outputBuffers.push_back(std::make_shared<Buffer>(device, sizeof(expectedOutputData)));
189 std::vector<uint8_t> enabledCounters(Inference::getMaxPmuEventCounters());
190
191 auto inference = std::make_shared<Inference>(network,
192 inputBuffers.begin(),
193 inputBuffers.end(),
194 outputBuffers.begin(),
195 outputBuffers.end(),
196 enabledCounters,
197 false);
198
199 bool timedout = inference->wait(defaultTimeout);
200 TEST_ASSERT(!timedout);
201
Davide Grohmann6d2e5b72022-08-24 17:01:40 +0200202 InferenceStatus status = inference->status();
203 TEST_ASSERT(status == InferenceStatus::OK);
204
205 bool success = inference->cancel();
206 TEST_ASSERT(!success);
207
Davide Grohmannf0364232022-06-16 17:42:58 +0200208 TEST_ASSERT(std::memcmp(expectedOutputData, outputBuffers[0]->data(), sizeof(expectedOutputData)) == 0);
209
210 } catch (std::exception &e) { throw TestFailureException("Inference run test: ", e.what()); }
211}
212
213} // namespace
214
215int main() {
216 Device device;
217
218 try {
219 testPing(device);
Mikael Olsson8f918c62023-10-12 15:30:32 +0200220 testDriverVersion(device);
Davide Grohmannf0364232022-06-16 17:42:58 +0200221 testCapabilties(device);
Mikael Olsson07545152023-10-17 13:05:38 +0200222 testBufferSeek(device);
Mikael Olsson45d47992023-10-12 15:32:56 +0200223 testNetworkInvalidType(device);
Mikael Olssonc081e592023-10-30 11:10:56 +0100224 testNetworkInvalidDataPtr(device);
225 testNetworkInvalidDataSize(device);
Davide Grohmannf0364232022-06-16 17:42:58 +0200226 testNetworkInfoNotExistentIndex(device);
227 testNetworkInfoBuffer(device);
228 testNetworkInfoUnparsableBuffer(device);
229 testRunInferenceBuffer(device);
230 } catch (TestFailureException &e) {
231 std::cerr << "Test failure: " << e.what() << std::endl;
232 return 1;
233 }
234
235 return 0;
236}