1#include <clc/clc.h> 2#include "relational.h" 3 4//Note: It would be nice to use __builtin_islessequal with vector inputs, but it seems to only take scalar values as 5// input, which will produce incorrect output for vector input types. 6 7_CLC_DEFINE_RELATIONAL_BINARY(int, islessequal, __builtin_islessequal, float, float) 8 9#ifdef cl_khr_fp64 10 11#pragma OPENCL EXTENSION cl_khr_fp64 : enable 12 13// The scalar version of islessequal(double, double) returns an int, but the vector versions 14// return long. 15 16_CLC_DEF _CLC_OVERLOAD int islessequal(double x, double y){ 17 return __builtin_islessequal(x, y); 18} 19 20_CLC_DEFINE_RELATIONAL_BINARY_VEC_ALL(long, islessequal, double, double) 21 22#endif 23#ifdef cl_khr_fp16 24 25#pragma OPENCL EXTENSION cl_khr_fp16 : enable 26 27// The scalar version of islessequal(half, half) returns an int, but the vector versions 28// return short. 29 30_CLC_DEF _CLC_OVERLOAD int islessequal(half x, half y){ 31 return __builtin_islessequal(x, y); 32} 33 34_CLC_DEFINE_RELATIONAL_BINARY_VEC_ALL(short, islessequal, half, half) 35 36#endif 37