1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
#include "sleef_cl.h"
_CL_OVERLOADABLE
float
_cl_fmax (float x, float y)
{
return Sleef_fmaxf (x, y);
}
_CL_OVERLOADABLE
float2
_cl_fmax (float2 x, float2 y)
{
float lo = _cl_fmax (x.lo, y.lo);
float hi = _cl_fmax (x.hi, y.hi);
return (float2) (lo, hi);
}
_CL_OVERLOADABLE
float4 _cl_fmax (float4, float4);
_CL_OVERLOADABLE
float3
_cl_fmax (float3 x, float3 y)
{
float4 x_3to4 = (float4) (x, (float)0);
float4 y_3to4 = (float4) (y, (float)0);
float4 r = _cl_fmax (x_3to4, y_3to4);
return r.xyz;
}
_CL_OVERLOADABLE
float4
_cl_fmax (float4 x, float4 y)
{
#if defined(SLEEF_VEC_128_AVAILABLE)
return Sleef_fmaxf4 (x, y);
#else
float2 lo = _cl_fmax (x.lo, y.lo);
float2 hi = _cl_fmax (x.hi, y.hi);
return (float4) (lo, hi);
#endif
}
_CL_OVERLOADABLE
float8
_cl_fmax (float8 x, float8 y)
{
#if defined(SLEEF_VEC_256_AVAILABLE)
return Sleef_fmaxf8 (x, y);
#else
float4 lo = _cl_fmax (x.lo, y.lo);
float4 hi = _cl_fmax (x.hi, y.hi);
return (float8) (lo, hi);
#endif
}
_CL_OVERLOADABLE
float16
_cl_fmax (float16 x, float16 y)
{
#if defined(SLEEF_VEC_512_AVAILABLE)
return Sleef_fmaxf16 (x, y);
#else
float8 lo = _cl_fmax (x.lo, y.lo);
float8 hi = _cl_fmax (x.hi, y.hi);
return (float16) (lo, hi);
#endif
}
#ifdef cl_khr_fp64
_CL_OVERLOADABLE
double
_cl_fmax (double x, double y)
{
return Sleef_fmax (x, y);
}
#endif /* cl_khr_fp64 */
#ifdef cl_khr_fp64
_CL_OVERLOADABLE
double2
_cl_fmax (double2 x, double2 y)
{
#if defined(SLEEF_VEC_128_AVAILABLE) && defined(SLEEF_DOUBLE_VEC_AVAILABLE)
return Sleef_fmaxd2 (x, y);
#else
double lo = _cl_fmax (x.lo, y.lo);
double hi = _cl_fmax (x.hi, y.hi);
return (double2) (lo, hi);
#endif
}
#endif /* cl_khr_fp64 */
#ifdef cl_khr_fp64
_CL_OVERLOADABLE
double4 _cl_fmax (double4, double4);
_CL_OVERLOADABLE
double3
_cl_fmax (double3 x, double3 y)
{
double4 x_3to4 = (double4) (x, (double)0);
double4 y_3to4 = (double4) (y, (double)0);
double4 r = _cl_fmax (x_3to4, y_3to4);
return r.xyz;
}
#endif /* cl_khr_fp64 */
#ifdef cl_khr_fp64
_CL_OVERLOADABLE
double4
_cl_fmax (double4 x, double4 y)
{
#if defined(SLEEF_VEC_256_AVAILABLE) && defined(SLEEF_DOUBLE_VEC_AVAILABLE)
return Sleef_fmaxd4 (x, y);
#else
double2 lo = _cl_fmax (x.lo, y.lo);
double2 hi = _cl_fmax (x.hi, y.hi);
return (double4) (lo, hi);
#endif
}
#endif /* cl_khr_fp64 */
#ifdef cl_khr_fp64
_CL_OVERLOADABLE
double8
_cl_fmax (double8 x, double8 y)
{
#if defined(SLEEF_VEC_512_AVAILABLE) && defined(SLEEF_DOUBLE_VEC_AVAILABLE)
return Sleef_fmaxd8 (x, y);
#else
double4 lo = _cl_fmax (x.lo, y.lo);
double4 hi = _cl_fmax (x.hi, y.hi);
return (double8) (lo, hi);
#endif
}
#endif /* cl_khr_fp64 */
#ifdef cl_khr_fp64
_CL_OVERLOADABLE
double16
_cl_fmax (double16 x, double16 y)
{
double8 lo = _cl_fmax (x.lo, y.lo);
double8 hi = _cl_fmax (x.hi, y.hi);
return (double16) (lo, hi);
}
#endif /* cl_khr_fp64 */
|