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
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include "../include/BiF_Definitions.cl"
#include "spirv.h"
INLINE
char OVERLOADABLE bitselect( char a,
char b,
char c )
{
char temp;
temp = (c & b) | (~c & a);
return temp;
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, char, char )
INLINE
uchar OVERLOADABLE bitselect( uchar a,
uchar b,
uchar c )
{
uchar temp;
temp = (c & b) | (~c & a);
return temp;
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, uchar, uchar )
INLINE
short OVERLOADABLE bitselect( short a,
short b,
short c )
{
short temp;
temp = (c & b) | (~c & a);
return temp;
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, short, short )
INLINE
ushort OVERLOADABLE bitselect( ushort a,
ushort b,
ushort c )
{
ushort temp;
temp = (c & b) | (~c & a);
return temp;
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, ushort, ushort )
INLINE
int OVERLOADABLE bitselect( int a,
int b,
int c )
{
int temp;
temp = (c & b) | (~c & a);
return temp;
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, int, int )
INLINE
uint OVERLOADABLE bitselect( uint a,
uint b,
uint c )
{
uint temp;
temp = (c & b) | (~c & a);
return temp;
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, uint, uint )
INLINE
long OVERLOADABLE bitselect( long a,
long b,
long c )
{
long temp;
temp = (c & b) | (~c & a);
return temp;
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, long, long )
INLINE
ulong OVERLOADABLE bitselect( ulong a,
ulong b,
ulong c )
{
ulong temp;
temp = (c & b) | (~c & a);
return temp;
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, ulong, ulong )
INLINE
float OVERLOADABLE bitselect( float a,
float b,
float c )
{
return as_float( bitselect(as_int(a), as_int(b), as_int(c)) );
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, float, float )
#if defined(cl_khr_fp64)
INLINE
double OVERLOADABLE bitselect( double a,
double b,
double c )
{
return as_double( bitselect(as_long(a), as_long(b), as_long(c)) );
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, double, double )
#endif // defined(cl_khr_fp64)
#ifdef cl_khr_fp16
INLINE
half OVERLOADABLE bitselect( half a,
half b,
half c )
{
return as_half( bitselect(as_short(a), as_short(b), as_short(c)) );
}
GENERATE_VECTOR_FUNCTIONS_3ARGS( bitselect, half, half )
#endif
|