//===-- AMDGPU specific declarations for math support ---------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_LIBC_SRC_MATH_AMDGPU_DECLARATIONS_H #define LLVM_LIBC_SRC_MATH_AMDGPU_DECLARATIONS_H #include "platform.h" #include "src/__support/GPU/utils.h" #include "src/__support/macros/config.h" namespace LIBC_NAMESPACE_DECL { extern "C" { float __ocml_acos_f32(float); double __ocml_acos_f64(double); float __ocml_acosh_f32(float); double __ocml_acosh_f64(double); float __ocml_asin_f32(float); double __ocml_asin_f64(double); float __ocml_asinh_f32(float); double __ocml_asinh_f64(double); float __ocml_atan_f32(float); double __ocml_atan_f64(double); float __ocml_atan2_f32(float, float); double __ocml_atan2_f64(double, double); float __ocml_atanh_f32(float); double __ocml_atanh_f64(double); float __ocml_cos_f32(float); double __ocml_cos_f64(double); float __ocml_cosh_f32(float); double __ocml_cosh_f64(double); float __ocml_erf_f32(float); double __ocml_erf_f64(double); float __ocml_exp_f32(float); double __ocml_exp_f64(double); float __ocml_exp2_f32(float); double __ocml_exp2_f64(double); float __ocml_exp10_f32(float); double __ocml_exp10_f64(double); double __ocml_exp2_f64(double); float __ocml_expm1_f32(float); double __ocml_expm1_f64(double); float __ocml_fdim_f32(float, float); double __ocml_fdim_f64(double, double); float __ocml_hypot_f32(float, float); double __ocml_hypot_f64(double, double); int __ocml_ilogb_f64(double); int __ocml_ilogb_f32(float); float __ocml_ldexp_f32(float, int); double __ocml_ldexp_f64(double, int); float __ocml_log10_f32(float); double __ocml_log10_f64(double); float __ocml_log1p_f32(float); double __ocml_log1p_f64(double); float __ocml_log2_f32(float); double __ocml_log2_f64(double); float __ocml_log_f32(float); double __ocml_log_f64(double); float __ocml_nextafter_f32(float, float); double __ocml_nextafter_f64(double, double); float __ocml_pow_f32(float, float); double __ocml_pow_f64(double, double); float __ocml_pown_f32(float, int); double __ocml_pown_f64(double, int); float __ocml_sin_f32(float); double __ocml_sin_f64(double); float __ocml_sincos_f32(float, float *); double __ocml_sincos_f64(double, double *); float __ocml_sinh_f32(float); double __ocml_sinh_f64(double); float __ocml_tan_f32(float); double __ocml_tan_f64(double); float __ocml_tanh_f32(float); double __ocml_tanh_f64(double); float __ocml_remquo_f32(float, float, gpu::Private *); double __ocml_remquo_f64(double, double, gpu::Private *); double __ocml_tgamma_f64(double); float __ocml_tgamma_f32(float); double __ocml_lgamma_f64(double); double __ocml_lgamma_r_f64(double, gpu::Private *); } } // namespace LIBC_NAMESPACE_DECL #endif // LLVM_LIBC_SRC_MATH_AMDGPU_DECLARATIONS_H