blob: df192b51311c1de4489420f096d986b01b60d86c [file] [log] [blame]
Anthony Barbiereaefd002018-07-20 17:49:35 +01001/*
Georgios Pinitas45875942021-07-06 21:19:27 +01002 * Copyright (c) 2018-2021 Arm Limited.
Anthony Barbiereaefd002018-07-20 17:49:35 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_CPP_VALIDATE_H
25#define ARM_COMPUTE_CPP_VALIDATE_H
Anthony Barbiereaefd002018-07-20 17:49:35 +010026
Georgios Pinitas45875942021-07-06 21:19:27 +010027#include "arm_compute/core/CPP/CPPTypes.h"
Anthony Barbiereaefd002018-07-20 17:49:35 +010028#include "arm_compute/core/Validate.h"
29
30namespace arm_compute
31{
32/** Return an error if the data type of the passed tensor info is FP16 and FP16 support is not compiled in.
33 *
34 * @param[in] function Function in which the error occurred.
35 * @param[in] file Name of the file where the error occurred.
36 * @param[in] line Line on which the error occurred.
37 * @param[in] tensor_info Tensor info to validate.
38 *
39 * @return Status
40 */
Michalis Spyroue7be8a02019-12-12 16:16:09 +000041inline Status error_on_unsupported_cpu_fp16(const char *function, const char *file, const int line,
42 const ITensorInfo *tensor_info)
Anthony Barbiereaefd002018-07-20 17:49:35 +010043{
Georgios Pinitas8e2f64f2021-07-28 13:18:46 +010044 bool fp16_kernels_enabled = false;
45#if defined(ARM_COMPUTE_ENABLE_FP16) && defined(ENABLE_FP16_KERNELS)
46 fp16_kernels_enabled = true;
47#endif /* defined(ARM_COMPUTE_ENABLE_FP16) && defined(ENABLE_FP16_KERNELS) */
48
Anthony Barbiereaefd002018-07-20 17:49:35 +010049 ARM_COMPUTE_RETURN_ERROR_ON_LOC(tensor_info == nullptr, function, file, line);
Georgios Pinitas8e2f64f2021-07-28 13:18:46 +010050 ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG((tensor_info->data_type() == DataType::F16) && (!CPUInfo::get().has_fp16() || !fp16_kernels_enabled),
Anthony Barbiereaefd002018-07-20 17:49:35 +010051 function, file, line, "This CPU architecture does not support F16 data type, you need v8.2 or above");
Georgios Pinitas45875942021-07-06 21:19:27 +010052 return Status{};
Anthony Barbiereaefd002018-07-20 17:49:35 +010053}
54
Georgios Pinitase8291ac2020-02-26 09:58:13 +000055/** Return an error if the data type of the passed tensor info is BFLOAT16 and BFLOAT16 support is not compiled in.
56 *
57 * @param[in] function Function in which the error occurred.
58 * @param[in] file Name of the file where the error occurred.
59 * @param[in] line Line on which the error occurred.
60 * @param[in] tensor_info Tensor info to validate.
61 *
62 * @return Status
63 */
64inline Status error_on_unsupported_cpu_bf16(const char *function, const char *file, const int line,
65 const ITensorInfo *tensor_info)
66{
Georgios Pinitas8e2f64f2021-07-28 13:18:46 +010067 bool bf16_kernels_enabled = false;
68#if defined(ARM_COMPUTE_ENABLE_BF16)
69 bf16_kernels_enabled = true;
70#endif /* defined(ARM_COMPUTE_ENABLE_BF16) */
71
Georgios Pinitase8291ac2020-02-26 09:58:13 +000072 ARM_COMPUTE_RETURN_ERROR_ON_LOC(tensor_info == nullptr, function, file, line);
Georgios Pinitas8e2f64f2021-07-28 13:18:46 +010073 ARM_COMPUTE_RETURN_ERROR_ON_LOC_MSG((tensor_info->data_type() == DataType::BFLOAT16) && (!CPUInfo::get().has_bf16() || !bf16_kernels_enabled),
Georgios Pinitase8291ac2020-02-26 09:58:13 +000074 function, file, line, "This CPU architecture does not support BFloat16 data type, you need v8.6 or above");
Georgios Pinitas45875942021-07-06 21:19:27 +010075 return Status{};
Georgios Pinitase8291ac2020-02-26 09:58:13 +000076}
77
Anthony Barbiereaefd002018-07-20 17:49:35 +010078/** Return an error if the data type of the passed tensor is FP16 and FP16 support is not compiled in.
79 *
80 * @param[in] function Function in which the error occurred.
81 * @param[in] file Name of the file where the error occurred.
82 * @param[in] line Line on which the error occurred.
83 * @param[in] tensor Tensor to validate.
84 *
85 * @return Status
86 */
Michalis Spyroue7be8a02019-12-12 16:16:09 +000087inline Status error_on_unsupported_cpu_fp16(const char *function, const char *file, const int line,
88 const ITensor *tensor)
Anthony Barbiereaefd002018-07-20 17:49:35 +010089{
90 ARM_COMPUTE_RETURN_ERROR_ON_LOC(tensor == nullptr, function, file, line);
91 ARM_COMPUTE_RETURN_ON_ERROR(::arm_compute::error_on_unsupported_cpu_fp16(function, file, line, tensor->info()));
Michalis Spyroue7be8a02019-12-12 16:16:09 +000092 return Status{};
Anthony Barbiereaefd002018-07-20 17:49:35 +010093}
94
Georgios Pinitase8291ac2020-02-26 09:58:13 +000095/** Return an error if the data type of the passed tensor is BFLOAT16 and BFLOAT16 support is not compiled in.
96 *
97 * @param[in] function Function in which the error occurred.
98 * @param[in] file Name of the file where the error occurred.
99 * @param[in] line Line on which the error occurred.
100 * @param[in] tensor Tensor to validate.
101 *
102 * @return Status
103 */
104inline Status error_on_unsupported_cpu_bf16(const char *function, const char *file, const int line,
105 const ITensor *tensor)
106{
107 ARM_COMPUTE_RETURN_ERROR_ON_LOC(tensor == nullptr, function, file, line);
108 ARM_COMPUTE_RETURN_ON_ERROR(::arm_compute::error_on_unsupported_cpu_bf16(function, file, line, tensor->info()));
109 return Status{};
110}
111
Anthony Barbiereaefd002018-07-20 17:49:35 +0100112#define ARM_COMPUTE_ERROR_ON_CPU_F16_UNSUPPORTED(tensor) \
113 ARM_COMPUTE_ERROR_THROW_ON(::arm_compute::error_on_unsupported_cpu_fp16(__func__, __FILE__, __LINE__, tensor))
114
115#define ARM_COMPUTE_RETURN_ERROR_ON_CPU_F16_UNSUPPORTED(tensor) \
116 ARM_COMPUTE_RETURN_ON_ERROR(::arm_compute::error_on_unsupported_cpu_fp16(__func__, __FILE__, __LINE__, tensor))
Georgios Pinitase8291ac2020-02-26 09:58:13 +0000117
118#define ARM_COMPUTE_ERROR_ON_CPU_BF16_UNSUPPORTED(tensor) \
119 ARM_COMPUTE_ERROR_THROW_ON(::arm_compute::error_on_unsupported_cpu_bf16(__func__, __FILE__, __LINE__, tensor))
120
121#define ARM_COMPUTE_RETURN_ERROR_ON_CPU_BF16_UNSUPPORTED(tensor) \
122 ARM_COMPUTE_RETURN_ON_ERROR(::arm_compute::error_on_unsupported_cpu_bf16(__func__, __FILE__, __LINE__, tensor))
Anthony Barbiereaefd002018-07-20 17:49:35 +0100123} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000124#endif /* ARM_COMPUTE_CPP_VALIDATE_H */