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.
15 lines
422 B
15 lines
422 B
// TODO: Enable half precision when sin/cos is implemented
|
|
#if __CLC_FPSIZE > 16
|
|
#define __CLC_DECLARE_SINCOS(ADDRSPACE, TYPE) \
|
|
_CLC_OVERLOAD _CLC_DEF TYPE sincos (TYPE x, ADDRSPACE TYPE * cosval) { \
|
|
*cosval = cos(x); \
|
|
return sin(x); \
|
|
}
|
|
|
|
__CLC_DECLARE_SINCOS(global, __CLC_GENTYPE)
|
|
__CLC_DECLARE_SINCOS(local, __CLC_GENTYPE)
|
|
__CLC_DECLARE_SINCOS(private, __CLC_GENTYPE)
|
|
|
|
#undef __CLC_DECLARE_SINCOS
|
|
#endif
|