blob: f5f9f1f8f78aad467581996c32f17190486861da [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Diego Lopez Recas0021d752017-12-18 14:42:56 +00002 * Copyright (c) 2016-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/core/Validate.h"
25
Georgios Pinitas631c41a2017-12-06 11:53:03 +000026arm_compute::Status arm_compute::error_on_mismatching_windows(const char *function, const char *file, const int line,
27 const arm_compute::Window &full, const arm_compute::Window &win)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029 full.validate();
30 win.validate();
31
32 for(size_t i = 0; i < arm_compute::Coordinates::num_max_dimensions; ++i)
33 {
Georgios Pinitas3faea252017-10-30 14:13:50 +000034 ARM_COMPUTE_RETURN_ERROR_ON_LOC(full[i].start() != win[i].start(), function, file, line);
35 ARM_COMPUTE_RETURN_ERROR_ON_LOC(full[i].end() != win[i].end(), function, file, line);
36 ARM_COMPUTE_RETURN_ERROR_ON_LOC(full[i].step() != win[i].step(), function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +000038 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039}
40
Georgios Pinitas631c41a2017-12-06 11:53:03 +000041arm_compute::Status arm_compute::error_on_invalid_subwindow(const char *function, const char *file, const int line,
42 const arm_compute::Window &full, const arm_compute::Window &sub)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044 full.validate();
45 sub.validate();
46
47 for(size_t i = 0; i < arm_compute::Coordinates::num_max_dimensions; ++i)
48 {
Georgios Pinitas3faea252017-10-30 14:13:50 +000049 ARM_COMPUTE_RETURN_ERROR_ON_LOC(full[i].start() > sub[i].start(), function, file, line);
50 ARM_COMPUTE_RETURN_ERROR_ON_LOC(full[i].end() < sub[i].end(), function, file, line);
51 ARM_COMPUTE_RETURN_ERROR_ON_LOC(full[i].step() != sub[i].step(), function, file, line);
52 ARM_COMPUTE_RETURN_ERROR_ON_LOC((sub[i].start() - full[i].start()) % sub[i].step(), function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +000054 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055}
56
Georgios Pinitas631c41a2017-12-06 11:53:03 +000057arm_compute::Status arm_compute::error_on_window_not_collapsable_at_dimension(const char *function, const char *file, const int line,
58 const arm_compute::Window &full, const arm_compute::Window &window, const int dim)
steniu01868e5412017-07-17 23:16:00 +010059{
steniu01868e5412017-07-17 23:16:00 +010060 full.validate();
61 window.validate();
62
Georgios Pinitas3faea252017-10-30 14:13:50 +000063 ARM_COMPUTE_RETURN_ERROR_ON_LOC(window[dim].start() != 0, function, file, line);
64 ARM_COMPUTE_RETURN_ERROR_ON_LOC(window[dim].start() != full[dim].start(), function, file, line);
65 ARM_COMPUTE_RETURN_ERROR_ON_LOC(full[dim].end() != window[dim].end(), function, file, line);
66
Georgios Pinitas631c41a2017-12-06 11:53:03 +000067 return arm_compute::Status{};
steniu01868e5412017-07-17 23:16:00 +010068}
69
Georgios Pinitas631c41a2017-12-06 11:53:03 +000070arm_compute::Status arm_compute::error_on_coordinates_dimensions_gte(const char *function, const char *file, const int line,
71 const arm_compute::Coordinates &pos, unsigned int max_dim)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010073 for(unsigned int i = max_dim; i < arm_compute::Coordinates::num_max_dimensions; ++i)
74 {
Georgios Pinitas3faea252017-10-30 14:13:50 +000075 ARM_COMPUTE_RETURN_ERROR_ON_LOC(pos[i] != 0, function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +000077 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +010078}
79
Georgios Pinitas631c41a2017-12-06 11:53:03 +000080arm_compute::Status arm_compute::error_on_window_dimensions_gte(const char *function, const char *file, const int line,
81 const arm_compute::Window &win, unsigned int max_dim)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 for(unsigned int i = max_dim; i < arm_compute::Coordinates::num_max_dimensions; ++i)
84 {
Diego Lopez Recas0021d752017-12-18 14:42:56 +000085 ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG((win[i].start() != 0) || (win[i].end() != win[i].step()),
Georgios Pinitas3faea252017-10-30 14:13:50 +000086 function, file, line,
87 "Maximum number of dimensions expected %u but dimension %u is not empty", max_dim, i);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010088 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +000089 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090}
91
Georgios Pinitas631c41a2017-12-06 11:53:03 +000092arm_compute::Status arm_compute::error_on_tensor_not_2d(const char *function, const char *file, const int line,
93 const arm_compute::ITensor *tensor)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094{
Georgios Pinitas3faea252017-10-30 14:13:50 +000095 ARM_COMPUTE_RETURN_ERROR_ON_LOC(tensor == nullptr, function, file, line);
96 ARM_COMPUTE_RETURN_ERROR_ON_LOC(tensor->info() == nullptr, function, file, line);
97 ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG(tensor->info()->num_dimensions() != 2,
98 function, file, line,
99 "Only 2D Tensors are supported by this kernel (%d passed)", tensor->info()->num_dimensions());
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000100 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101}
102
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000103arm_compute::Status arm_compute::error_on_channel_not_in_known_format(const char *function, const char *file, const int line,
104 arm_compute::Format fmt, arm_compute::Channel cn)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105{
Georgios Pinitas3faea252017-10-30 14:13:50 +0000106 ARM_COMPUTE_RETURN_ERROR_ON_LOC(fmt == arm_compute::Format::UNKNOWN, function, file, line);
107 ARM_COMPUTE_RETURN_ERROR_ON_LOC(cn == arm_compute::Channel::UNKNOWN, function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100108
109 switch(fmt)
110 {
111 case arm_compute::Format::RGB888:
112 arm_compute::error_on_channel_not_in(function, file, line, cn, arm_compute::Channel::R, arm_compute::Channel::G, arm_compute::Channel::B);
113 break;
114 case arm_compute::Format::RGBA8888:
115 arm_compute::error_on_channel_not_in(function, file, line, cn, arm_compute::Channel::R, arm_compute::Channel::G, arm_compute::Channel::B, arm_compute::Channel::A);
116 break;
117 case arm_compute::Format::UV88:
118 arm_compute::error_on_channel_not_in(function, file, line, cn, arm_compute::Channel::U, arm_compute::Channel::V);
119 break;
120 case arm_compute::Format::IYUV:
121 case arm_compute::Format::UYVY422:
122 case arm_compute::Format::YUYV422:
123 case arm_compute::Format::NV12:
124 case arm_compute::Format::NV21:
125 case arm_compute::Format::YUV444:
126 arm_compute::error_on_channel_not_in(function, file, line, cn, arm_compute::Channel::Y, arm_compute::Channel::U, arm_compute::Channel::V);
127 break;
128 default:
129 ARM_COMPUTE_ERROR_LOC(function, file, line, "Not supported format.");
130 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000131 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100132}
133
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000134arm_compute::Status arm_compute::error_on_invalid_multi_hog(const char *function, const char *file, const int line,
135 const arm_compute::IMultiHOG *multi_hog)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100136{
Georgios Pinitas3faea252017-10-30 14:13:50 +0000137 ARM_COMPUTE_RETURN_ERROR_ON_LOC(nullptr == multi_hog, function, file, line);
138 ARM_COMPUTE_RETURN_ERROR_ON_LOC(0 == multi_hog->num_models(), function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139
140 for(size_t i = 1; i < multi_hog->num_models(); ++i)
141 {
Georgios Pinitas3faea252017-10-30 14:13:50 +0000142 ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG(multi_hog->model(0)->info()->phase_type() != multi_hog->model(i)->info()->phase_type(),
143 function, file, line,
144 "All HOG parameters must have the same phase type");
145 ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG(multi_hog->model(0)->info()->normalization_type() != multi_hog->model(i)->info()->normalization_type(),
146 function, file, line,
147 "All HOG parameters must have the same normalization type");
148 ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG((multi_hog->model(0)->info()->l2_hyst_threshold() != multi_hog->model(i)->info()->l2_hyst_threshold())
149 && (multi_hog->model(0)->info()->normalization_type() == arm_compute::HOGNormType::L2HYS_NORM),
150 function, file, line,
151 "All HOG parameters must have the same l2 hysteresis threshold if you use L2 hysteresis normalization type");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100152 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000153 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100154}
155
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000156arm_compute::Status arm_compute::error_on_unconfigured_kernel(const char *function, const char *file, const int line,
157 const arm_compute::IKernel *kernel)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100158{
Georgios Pinitas3faea252017-10-30 14:13:50 +0000159 ARM_COMPUTE_RETURN_ERROR_ON_LOC(kernel == nullptr, function, file, line);
160 ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG((kernel->window().x().start() == kernel->window().x().end()) && (kernel->window().x().end() == 0) && (kernel->window().x().step() == 0),
161 function, file, line,
162 "This kernel hasn't been configured.");
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000163 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100164}
165
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000166arm_compute::Status arm_compute::error_on_invalid_subtensor(const char *function, const char *file, const int line,
167 const TensorShape &parent_shape, const Coordinates &coords, const TensorShape &shape)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100168{
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169 // Subtensor should not index in x, y dimensions.
Georgios Pinitas3faea252017-10-30 14:13:50 +0000170 ARM_COMPUTE_RETURN_ERROR_ON_LOC(((coords.x() != 0) && (coords.y() != 0)), function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100171 // Subtensor shape should match parent tensor in x, y dimensions.
Georgios Pinitas3faea252017-10-30 14:13:50 +0000172 ARM_COMPUTE_RETURN_ERROR_ON_LOC(((parent_shape.x() != shape.x()) && (parent_shape.y() != parent_shape.y())), function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100173
174 // Check dimensions
175 for(unsigned int i = 0; i < TensorShape::num_max_dimensions; ++i)
176 {
Georgios Pinitas3faea252017-10-30 14:13:50 +0000177 ARM_COMPUTE_RETURN_ERROR_ON_LOC(((coords[i] >= static_cast<int>(parent_shape[i])) || (coords[i] + static_cast<int>(shape[i]) > static_cast<int>(parent_shape[i]))),
178 function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100179 }
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000180 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100181}
182
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000183arm_compute::Status arm_compute::error_on_invalid_subtensor_valid_region(const char *function, const char *file, const int line,
184 const ValidRegion &parent_valid_region, const ValidRegion &valid_region)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100185{
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186 // Check valid regions
187 for(unsigned int d = 0; d < TensorShape::num_max_dimensions; ++d)
188 {
Georgios Pinitas3faea252017-10-30 14:13:50 +0000189 ARM_COMPUTE_RETURN_ERROR_ON_LOC((parent_valid_region.anchor[d] > valid_region.anchor[d]), function, file, line);
190 ARM_COMPUTE_RETURN_ERROR_ON_LOC((parent_valid_region.anchor[d] + static_cast<int>(parent_valid_region.shape[d])) < (valid_region.anchor[d] + static_cast<int>(valid_region.shape[d])),
191 function, file, line);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100192 }
Georgios Pinitas3faea252017-10-30 14:13:50 +0000193
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000194 return arm_compute::Status{};
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100195}