| //===----------------------------------------------------------------------===// |
| // |
| // 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 |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include <clc/clc.h> |
| #include <clc/clcmacro.h> |
| #include <clc/common/clc_radians.h> |
| |
| _CLC_DEFINE_UNARY_BUILTIN(float, radians, __clc_radians, float) |
| |
| #ifdef cl_khr_fp64 |
| #pragma OPENCL EXTENSION cl_khr_fp64 : enable |
| |
| _CLC_DEFINE_UNARY_BUILTIN(double, radians, __clc_radians, double) |
| |
| #endif |
| |
| #ifdef cl_khr_fp16 |
| #pragma OPENCL EXTENSION cl_khr_fp16 : enable |
| |
| _CLC_DEFINE_UNARY_BUILTIN(half, radians, __clc_radians, half) |
| |
| #endif |