1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
/*
* Copyright (c) 2017-2023 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef ACL_SUPPORT_TOOLCHAINSUPPORT_H
#define ACL_SUPPORT_TOOLCHAINSUPPORT_H
#include "support/Bfloat16.h"
#include "support/Half.h"
#include <cassert>
#include <cmath>
#include <cstddef>
#include <limits>
#include <memory>
#include <sstream>
#include <string>
#include <type_traits>
#ifndef M_PI
#define M_PI (3.14159265358979323846)
#endif // M_PI
namespace arm_compute
{
#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
typedef __fp16 float16_t;
#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
namespace support
{
namespace cpp11
{
#if (__ANDROID__ || BARE_METAL)
template <typename T>
inline T nearbyint(T value)
{
return static_cast<T>(::nearbyint(value));
}
/** Round floating-point value with half value rounding away from zero.
*
* @note This function implements the same behaviour as std::round except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] value floating-point value to be rounded.
*
* @return Floating-point value of rounded @p value.
*/
template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
inline T round(T value)
{
return ::round(value);
}
/** Round floating-point value with half value rounding away from zero and cast to long
*
* @note This function implements the same behaviour as std::lround except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] value floating-point value to be rounded.
*
* @return Floating-point value of rounded @p value casted to long
*/
template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
inline long lround(T value)
{
return ::lround(value);
}
/** Truncate floating-point value.
*
* @note This function implements the same behaviour as std::truncate except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] value floating-point value to be truncated.
*
* @return Floating-point value of truncated @p value.
*/
template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
inline T trunc(T value)
{
return ::trunc(value);
}
/** Composes a floating point value with the magnitude of @p x and the sign of @p y.
*
* @note This function implements the same behaviour as std::copysign except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] x value that contains the magnitude to be used in constructing the result.
* @param[in] y value that contains the sign to be used in construct in the result.
*
* @return Floating-point value with magnitude of @p x and sign of @p y.
*/
template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
inline T copysign(T x, T y)
{
return ::copysign(x, y);
}
/** Computes (x*y) + z as if to infinite precision and rounded only once to fit the result type.
*
* @note This function implements the same behaviour as std::fma except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] x floating-point value
* @param[in] y floating-point value
* @param[in] z floating-point value
*
* @return Result floating point value equal to (x*y) + z.c
*/
template <typename T,
typename = typename std::enable_if<std::is_floating_point<T>::value
#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
|| std::is_same<T, float16_t>::value
#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
>::type>
inline T fma(T x, T y, T z)
{
return ::fma(x, y, z);
}
/** Loads the data from the given location, converts them to character string equivalents
* and writes the result to a character string buffer.
*
* @param[in] s Pointer to a character string to write to
* @param[in] n Up to buf_size - 1 characters may be written, plus the null ending character
* @param[in] fmt Pointer to a null-ended multibyte string specifying how to interpret the data.
* @param[in] args Arguments forwarded to snprintf.
*
* @return Number of characters that would have been written for a sufficiently large buffer
* if successful (not including the ending null character), or a negative value if an error occurred.
*/
template <typename... Ts>
inline int snprintf(char *s, size_t n, const char *fmt, Ts &&...args)
{
return ::snprintf(s, n, fmt, std::forward<Ts>(args)...);
}
#else /* (__ANDROID__ || BARE_METAL) */
/** Rounds the floating-point argument arg to an integer value in floating-point format, using the current rounding mode.
*
* @note This function acts as a convenience wrapper around std::nearbyint. The
* latter is missing in some Android toolchains.
*
* @param[in] value Value to be rounded.
*
* @return The rounded value.
*/
template <typename T>
inline T nearbyint(T value)
{
return static_cast<T>(std::nearbyint(value));
}
/** Round floating-point value with half value rounding away from zero.
*
* @note This function implements the same behaviour as std::round except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] value floating-point value to be rounded.
*
* @return Floating-point value of rounded @p value.
*/
template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
inline T round(T value)
{
return std::round(value);
}
/** Round floating-point value with half value rounding away from zero and cast to long
*
* @note This function implements the same behaviour as std::lround except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] value floating-point value to be rounded.
*
* @return Floating-point value of rounded @p value casted to long
*/
template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
inline long lround(T value)
{
return std::lround(value);
}
/** Truncate floating-point value.
*
* @note This function implements the same behaviour as std::truncate except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] value floating-point value to be truncated.
*
* @return Floating-point value of truncated @p value.
*/
template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
inline T trunc(T value)
{
return std::trunc(value);
}
/** Composes a floating point value with the magnitude of @p x and the sign of @p y.
*
* @note This function implements the same behaviour as std::copysign except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] x value that contains the magnitude to be used in constructing the result.
* @param[in] y value that contains the sign to be used in construct in the result.
*
* @return Floating-point value with magnitude of @p x and sign of @p y.
*/
template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
inline T copysign(T x, T y)
{
return std::copysign(x, y);
}
/** Computes (x*y) + z as if to infinite precision and rounded only once to fit the result type.
*
* @note This function implements the same behaviour as std::fma except that it doesn't
* support Integral type. The latter is not in the namespace std in some Android toolchains.
*
* @param[in] x floating-point value
* @param[in] y floating-point value
* @param[in] z floating-point value
*
* @return Result floating point value equal to (x*y) + z.
*/
template <typename T,
typename = typename std::enable_if<std::is_floating_point<T>::value
#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
|| std::is_same<T, float16_t>::value
#endif // __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
>::type>
inline T fma(T x, T y, T z)
{
return std::fma(x, y, z);
}
/** Loads the data from the given location, converts them to character string equivalents
* and writes the result to a character string buffer.
*
* @param[in] s Pointer to a character string to write to
* @param[in] n Up to buf_size - 1 characters may be written, plus the null ending character
* @param[in] fmt Pointer to a null-ended multibyte string specifying how to interpret the data.
* @param[in] args Arguments forwarded to std::snprintf.
*
* @return Number of characters that would have been written for a sufficiently large buffer
* if successful (not including the ending null character), or a negative value if an error occurred.
*/
template <typename... Ts>
inline int snprintf(char *s, std::size_t n, const char *fmt, Ts &&...args)
{
return std::snprintf(s, n, fmt, std::forward<Ts>(args)...);
}
#endif /* (__ANDROID__ || BARE_METAL) */
// std::numeric_limits<T>::lowest
template <typename T>
inline T lowest()
{
return std::numeric_limits<T>::lowest();
}
#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
template <>
inline __fp16 lowest<__fp16>()
{
return std::numeric_limits<half_float::half>::lowest();
}
#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
template <>
inline bfloat16 lowest<bfloat16>()
{
return bfloat16::lowest();
}
// std::isfinite
template <typename T, typename = typename std::enable_if<std::is_arithmetic<T>::value>::type>
inline bool isfinite(T value)
{
return std::isfinite(static_cast<double>(value));
}
inline bool isfinite(half_float::half value)
{
return half_float::isfinite(value);
}
inline bool isfinite(bfloat16 value)
{
return std::isfinite(float(value));
}
// std::signbit
template <typename T, typename = typename std::enable_if<std::is_arithmetic<T>::value>::type>
inline bool signbit(T value)
{
return std::signbit(static_cast<double>(value));
}
inline bool signbit(half_float::half value)
{
return half_float::signbit(value);
}
inline bool signbit(bfloat16 value)
{
return std::signbit(float(value));
}
} // namespace cpp11
} // namespace support
} // namespace arm_compute
#endif // ACL_SUPPORT_TOOLCHAINSUPPORT_H
|