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.
12 lines
309 B
12 lines
309 B
_CLC_DEF _CLC_OVERLOAD float __clc_ldexp(float, int);
|
|
|
|
#ifdef cl_khr_fp64
|
|
#pragma OPENCL EXTENSION cl_khr_fp64 : enable
|
|
_CLC_DEF _CLC_OVERLOAD double __clc_ldexp(double, int);
|
|
#endif
|
|
|
|
#ifdef cl_khr_fp16
|
|
#pragma OPENCL EXTENSION cl_khr_fp16 : enable
|
|
_CLC_DEF _CLC_OVERLOAD float __clc_ldexp(half, int);
|
|
#endif
|