You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
500 B
25 lines
500 B
4 months ago
|
#include "../clcmacro.h"
|
||
|
#include "utils.h"
|
||
|
|
||
|
#ifndef __CLC_BUILTIN
|
||
|
#define __CLC_BUILTIN __CLC_XCONCAT(__clc_, __CLC_FUNCTION)
|
||
|
#endif
|
||
|
|
||
|
_CLC_DEFINE_UNARY_BUILTIN(float, __CLC_FUNCTION, __CLC_BUILTIN, float)
|
||
|
|
||
|
#ifdef cl_khr_fp64
|
||
|
|
||
|
#pragma OPENCL EXTENSION cl_khr_fp64 : enable
|
||
|
|
||
|
_CLC_DEFINE_UNARY_BUILTIN(double, __CLC_FUNCTION, __CLC_BUILTIN, double)
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#ifdef cl_khr_fp16
|
||
|
|
||
|
#pragma OPENCL EXTENSION cl_khr_fp16 : enable
|
||
|
|
||
|
_CLC_DEFINE_UNARY_BUILTIN(half, __CLC_FUNCTION, __CLC_BUILTIN, half)
|
||
|
|
||
|
#endif
|