| #include <clc/internal/clc.h> |
| #include <clc/relational/relational.h> |
| |
| #define _CLC_RELATIONAL_OP(X, Y) (X) >= (Y) |
| |
| _CLC_DEFINE_SIMPLE_RELATIONAL_BINARY(int, int, __clc_isgreaterequal, float, |
| float) |
| |
| #ifdef cl_khr_fp64 |
| |
| #pragma OPENCL EXTENSION cl_khr_fp64 : enable |
| |
| // The scalar version of __clc_isgreaterequal(double, double) returns an int, |
| // but the vector versions return long. |
| _CLC_DEFINE_SIMPLE_RELATIONAL_BINARY(int, long, __clc_isgreaterequal, double, |
| double) |
| |
| #endif |
| |
| #ifdef cl_khr_fp16 |
| |
| #pragma OPENCL EXTENSION cl_khr_fp16 : enable |
| |
| // The scalar version of __clc_isgreaterequal(half, hafl) returns an int, but |
| // the vector versions return short. |
| _CLC_DEFINE_SIMPLE_RELATIONAL_BINARY(int, short, __clc_isgreaterequal, half, |
| half) |
| |
| #endif |
| |
| #undef _CLC_RELATIONAL_OP |