Created
May 10, 2015 13:25
-
-
Save obscuren/8dd1ad5a44ef8973b25e to your computer and use it in GitHub Desktop.
ethash.cl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2015/05/10 15:24:55 program build err: cl: build error (<program source>:39:6: warning: no previous prototype for function 'keccak_f1600_round' | |
void keccak_f1600_round(uint2* a, uint r, uint out_size) | |
^ | |
<program source>:155:6: warning: no previous prototype for function 'keccak_f1600_no_absorb' | |
void keccak_f1600_no_absorb(ulong* a, uint in_size, uint out_size, uint isolate) | |
^ | |
<program source>:197:6: warning: no previous prototype for function 'fnv' | |
uint fnv(uint x, uint y) | |
^ | |
<program source>:202:7: warning: no previous prototype for function 'fnv4' | |
uint4 fnv4(uint4 x, uint4 y) | |
^ | |
<program source>:207:6: warning: no previous prototype for function 'fnv_reduce' | |
uint fnv_reduce(uint4 v) | |
^ | |
<program source>:230:10: warning: no previous prototype for function 'init_hash' | |
hash64_t init_hash(__constant hash32_t const* header, ulong nonce, uint isolate) | |
^ | |
<program source>:246:6: warning: no previous prototype for function 'inner_loop' | |
uint inner_loop(uint4 init, uint thread_id, __local uint* share, __global hash128_t const* g_dag, uint isolate) | |
^ | |
<program source>:279:10: warning: no previous prototype for function 'final_hash' | |
hash32_t final_hash(hash64_t const* init, hash32_t const* mix, uint isolate) | |
^ | |
<program source>:298:10: warning: no previous prototype for function 'compute_hash_simple' | |
hash32_t compute_hash_simple( | |
^ | |
<program source>:350:10: warning: no previous prototype for function 'compute_hash' | |
hash32_t compute_hash( | |
^ | |
<program source>:420:15: error: call to 'min' is ambiguous | |
uint slot = min(4, atomic_inc(&g_output[0]) + 1); | |
^~~ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1254:18: note: expanded from macro '__CLFN_ALL_MODD' | |
int __OVERLOAD__ name(int x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1260:19: note: expanded from macro '__CLFN_ALL_MODD' | |
uint __OVERLOAD__ name(uint x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1261:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uint2 __OVERLOAD__ name(uint2 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1262:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uint3 __OVERLOAD__ name(uint3 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1263:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uint4 __OVERLOAD__ name(uint4 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1264:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uint8 __OVERLOAD__ name(uint8 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1265:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uint16 __OVERLOAD__ name(uint16 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1181:20: note: expanded from macro '__CLFN_ALL' | |
char2 __OVERLOAD__ name(char2 x, char2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1182:20: note: expanded from macro '__CLFN_ALL' | |
char3 __OVERLOAD__ name(char3 x, char3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1183:20: note: expanded from macro '__CLFN_ALL' | |
char4 __OVERLOAD__ name(char4 x, char4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1184:20: note: expanded from macro '__CLFN_ALL' | |
char8 __OVERLOAD__ name(char8 x, char8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1185:21: note: expanded from macro '__CLFN_ALL' | |
char16 __OVERLOAD__ name(char16 x, char16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1187:21: note: expanded from macro '__CLFN_ALL' | |
uchar2 __OVERLOAD__ name(uchar2 x, uchar2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1188:21: note: expanded from macro '__CLFN_ALL' | |
uchar3 __OVERLOAD__ name(uchar3 x, uchar3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1189:21: note: expanded from macro '__CLFN_ALL' | |
uchar4 __OVERLOAD__ name(uchar4 x, uchar4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1190:21: note: expanded from macro '__CLFN_ALL' | |
uchar8 __OVERLOAD__ name(uchar8 x, uchar8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1191:22: note: expanded from macro '__CLFN_ALL' | |
uchar16 __OVERLOAD__ name(uchar16 x,uchar16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1193:21: note: expanded from macro '__CLFN_ALL' | |
short2 __OVERLOAD__ name(short2 x, short2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1194:21: note: expanded from macro '__CLFN_ALL' | |
short3 __OVERLOAD__ name(short3 x, short3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1195:21: note: expanded from macro '__CLFN_ALL' | |
short4 __OVERLOAD__ name(short4 x, short4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1196:21: note: expanded from macro '__CLFN_ALL' | |
short8 __OVERLOAD__ name(short8 x, short8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1197:22: note: expanded from macro '__CLFN_ALL' | |
short16 __OVERLOAD__ name(short16 x, short16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1199:22: note: expanded from macro '__CLFN_ALL' | |
ushort2 __OVERLOAD__ name(ushort2 x, ushort2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1200:22: note: expanded from macro '__CLFN_ALL' | |
ushort3 __OVERLOAD__ name(ushort3 x, ushort3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1201:22: note: expanded from macro '__CLFN_ALL' | |
ushort4 __OVERLOAD__ name(ushort4 x, ushort4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1202:22: note: expanded from macro '__CLFN_ALL' | |
ushort8 __OVERLOAD__ name(ushort8 x, ushort8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1203:23: note: expanded from macro '__CLFN_ALL' | |
ushort16 __OVERLOAD__ name(ushort16 x, ushort16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1205:19: note: expanded from macro '__CLFN_ALL' | |
int2 __OVERLOAD__ name(int2 x, int2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1206:19: note: expanded from macro '__CLFN_ALL' | |
int3 __OVERLOAD__ name(int3 x, int3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1207:19: note: expanded from macro '__CLFN_ALL' | |
int4 __OVERLOAD__ name(int4 x, int4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1208:19: note: expanded from macro '__CLFN_ALL' | |
int8 __OVERLOAD__ name(int8 x, int8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1209:20: note: expanded from macro '__CLFN_ALL' | |
int16 __OVERLOAD__ name(int16 x, int16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1211:20: note: expanded from macro '__CLFN_ALL' | |
uint2 __OVERLOAD__ name(uint2 x, uint2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1212:20: note: expanded from macro '__CLFN_ALL' | |
uint3 __OVERLOAD__ name(uint3 x, uint3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1213:20: note: expanded from macro '__CLFN_ALL' | |
uint4 __OVERLOAD__ name(uint4 x, uint4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1214:20: note: expanded from macro '__CLFN_ALL' | |
uint8 __OVERLOAD__ name(uint8 x, uint8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1215:21: note: expanded from macro '__CLFN_ALL' | |
uint16 __OVERLOAD__ name(uint16 x, uint16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1217:20: note: expanded from macro '__CLFN_ALL' | |
long2 __OVERLOAD__ name(long2 x, long2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1218:20: note: expanded from macro '__CLFN_ALL' | |
long3 __OVERLOAD__ name(long3 x, long3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1219:20: note: expanded from macro '__CLFN_ALL' | |
long4 __OVERLOAD__ name(long4 x, long4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1220:20: note: expanded from macro '__CLFN_ALL' | |
long8 __OVERLOAD__ name(long8 x, long8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1221:21: note: expanded from macro '__CLFN_ALL' | |
long16 __OVERLOAD__ name(long16 x, long16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1223:21: note: expanded from macro '__CLFN_ALL' | |
ulong2 __OVERLOAD__ name(ulong2 x, ulong2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1224:21: note: expanded from macro '__CLFN_ALL' | |
ulong3 __OVERLOAD__ name(ulong3 x, ulong3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1225:21: note: expanded from macro '__CLFN_ALL' | |
ulong4 __OVERLOAD__ name(ulong4 x, ulong4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1226:21: note: expanded from macro '__CLFN_ALL' | |
ulong8 __OVERLOAD__ name(ulong8 x, ulong8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1227:22: note: expanded from macro '__CLFN_ALL' | |
ulong16 __OVERLOAD__ name(ulong16 x, ulong16 y); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1230:49: note: expanded from macro '__CLFN_ALL_MODD' | |
#define __CLFN_ALL_MODD(name) char __OVERLOAD__ name(char x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1231:20: note: expanded from macro '__CLFN_ALL_MODD' | |
char2 __OVERLOAD__ name(char2 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1232:20: note: expanded from macro '__CLFN_ALL_MODD' | |
char3 __OVERLOAD__ name(char3 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1233:20: note: expanded from macro '__CLFN_ALL_MODD' | |
char4 __OVERLOAD__ name(char4 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1234:20: note: expanded from macro '__CLFN_ALL_MODD' | |
char8 __OVERLOAD__ name(char8 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1235:21: note: expanded from macro '__CLFN_ALL_MODD' | |
char16 __OVERLOAD__ name(char16 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1236:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar __OVERLOAD__ name(uchar x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1237:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar2 __OVERLOAD__ name(uchar2 x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1238:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar3 __OVERLOAD__ name(uchar3 x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1239:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar4 __OVERLOAD__ name(uchar4 x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1240:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar8 __OVERLOAD__ name(uchar8 x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1241:22: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar16 __OVERLOAD__ name(uchar16 x,uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1242:20: note: expanded from macro '__CLFN_ALL_MODD' | |
short __OVERLOAD__ name(short x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1243:21: note: expanded from macro '__CLFN_ALL_MODD' | |
short2 __OVERLOAD__ name(short2 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1244:21: note: expanded from macro '__CLFN_ALL_MODD' | |
short3 __OVERLOAD__ name(short3 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1245:21: note: expanded from macro '__CLFN_ALL_MODD' | |
short4 __OVERLOAD__ name(short4 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1246:21: note: expanded from macro '__CLFN_ALL_MODD' | |
short8 __OVERLOAD__ name(short8 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1247:22: note: expanded from macro '__CLFN_ALL_MODD' | |
short16 __OVERLOAD__ name(short16 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1248:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort __OVERLOAD__ name(ushort x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1249:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort2 __OVERLOAD__ name(ushort2 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1250:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort3 __OVERLOAD__ name(ushort3 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1251:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort4 __OVERLOAD__ name(ushort4 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1252:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort8 __OVERLOAD__ name(ushort8 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1253:23: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort16 __OVERLOAD__ name(ushort16 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1255:19: note: expanded from macro '__CLFN_ALL_MODD' | |
int2 __OVERLOAD__ name(int2 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1256:19: note: expanded from macro '__CLFN_ALL_MODD' | |
int3 __OVERLOAD__ name(int3 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1257:19: note: expanded from macro '__CLFN_ALL_MODD' | |
int4 __OVERLOAD__ name(int4 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1258:19: note: expanded from macro '__CLFN_ALL_MODD' | |
int8 __OVERLOAD__ name(int8 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1259:20: note: expanded from macro '__CLFN_ALL_MODD' | |
int16 __OVERLOAD__ name(int16 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1266:19: note: expanded from macro '__CLFN_ALL_MODD' | |
long __OVERLOAD__ name(long x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1267:20: note: expanded from macro '__CLFN_ALL_MODD' | |
long2 __OVERLOAD__ name(long2 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1268:20: note: expanded from macro '__CLFN_ALL_MODD' | |
long3 __OVERLOAD__ name(long3 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1269:20: note: expanded from macro '__CLFN_ALL_MODD' | |
long4 __OVERLOAD__ name(long4 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1270:20: note: expanded from macro '__CLFN_ALL_MODD' | |
long8 __OVERLOAD__ name(long8 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1271:21: note: expanded from macro '__CLFN_ALL_MODD' | |
long16 __OVERLOAD__ name(long16 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1272:20: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong __OVERLOAD__ name(ulong x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1273:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong2 __OVERLOAD__ name(ulong2 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1274:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong3 __OVERLOAD__ name(ulong3 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1275:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong4 __OVERLOAD__ name(ulong4 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1276:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong8 __OVERLOAD__ name(ulong8 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1277:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong16 __OVERLOAD__ name(ulong16 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1279:21: note: expanded from macro '__CLFN_ALL_MODD' | |
float2 __OVERLOAD__ name(float2 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1280:21: note: expanded from macro '__CLFN_ALL_MODD' | |
float3 __OVERLOAD__ name(float3 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1281:21: note: expanded from macro '__CLFN_ALL_MODD' | |
float4 __OVERLOAD__ name(float4 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1282:21: note: expanded from macro '__CLFN_ALL_MODD' | |
float8 __OVERLOAD__ name(float8 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1283:22: note: expanded from macro '__CLFN_ALL_MODD' | |
float16 __OVERLOAD__ name(float16 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1285:22: note: expanded from macro '__CLFN_ALL_MODD' | |
double2 __OVERLOAD__ name(double2 x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1286:22: note: expanded from macro '__CLFN_ALL_MODD' | |
double3 __OVERLOAD__ name(double3 x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1287:22: note: expanded from macro '__CLFN_ALL_MODD' | |
double4 __OVERLOAD__ name(double4 x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1288:22: note: expanded from macro '__CLFN_ALL_MODD' | |
double8 __OVERLOAD__ name(double8 x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1289:23: note: expanded from macro '__CLFN_ALL_MODD' | |
double16 __OVERLOAD__ name(double16 x, double y); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:996:48: note: expanded from macro '__CLFN_FD_2FD' | |
#define __CLFN_FD_2FD(name) float __OVERLOAD__ name(float x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:997:21: note: expanded from macro '__CLFN_FD_2FD' | |
float2 __OVERLOAD__ name(float2 x, float2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:998:21: note: expanded from macro '__CLFN_FD_2FD' | |
float3 __OVERLOAD__ name(float3 x, float3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:999:21: note: expanded from macro '__CLFN_FD_2FD' | |
float4 __OVERLOAD__ name(float4 x, float4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1000:21: note: expanded from macro '__CLFN_FD_2FD' | |
float8 __OVERLOAD__ name(float8 x, float8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1001:22: note: expanded from macro '__CLFN_FD_2FD' | |
float16 __OVERLOAD__ name(float16 x, float16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1002:21: note: expanded from macro '__CLFN_FD_2FD' | |
double __OVERLOAD__ name(double x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1003:22: note: expanded from macro '__CLFN_FD_2FD' | |
double2 __OVERLOAD__ name(double2 x, double2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1004:22: note: expanded from macro '__CLFN_FD_2FD' | |
double3 __OVERLOAD__ name(double3 x, double3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1005:22: note: expanded from macro '__CLFN_FD_2FD' | |
double4 __OVERLOAD__ name(double4 x, double4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1006:22: note: expanded from macro '__CLFN_FD_2FD' | |
double8 __OVERLOAD__ name(double8 x, double8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1007:23: note: expanded from macro '__CLFN_FD_2FD' | |
double16 __OVERLOAD__ name(double16 x, double16 y); | |
^ | |
<program source>:457:15: error: call to 'min' is ambiguous | |
uint slot = min(4, atomic_inc(&g_output[0]) + 1); | |
^~~ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1254:18: note: expanded from macro '__CLFN_ALL_MODD' | |
int __OVERLOAD__ name(int x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1260:19: note: expanded from macro '__CLFN_ALL_MODD' | |
uint __OVERLOAD__ name(uint x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1261:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uint2 __OVERLOAD__ name(uint2 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1262:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uint3 __OVERLOAD__ name(uint3 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1263:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uint4 __OVERLOAD__ name(uint4 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1264:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uint8 __OVERLOAD__ name(uint8 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1265:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uint16 __OVERLOAD__ name(uint16 x, uint y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1181:20: note: expanded from macro '__CLFN_ALL' | |
char2 __OVERLOAD__ name(char2 x, char2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1182:20: note: expanded from macro '__CLFN_ALL' | |
char3 __OVERLOAD__ name(char3 x, char3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1183:20: note: expanded from macro '__CLFN_ALL' | |
char4 __OVERLOAD__ name(char4 x, char4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1184:20: note: expanded from macro '__CLFN_ALL' | |
char8 __OVERLOAD__ name(char8 x, char8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1185:21: note: expanded from macro '__CLFN_ALL' | |
char16 __OVERLOAD__ name(char16 x, char16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1187:21: note: expanded from macro '__CLFN_ALL' | |
uchar2 __OVERLOAD__ name(uchar2 x, uchar2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1188:21: note: expanded from macro '__CLFN_ALL' | |
uchar3 __OVERLOAD__ name(uchar3 x, uchar3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1189:21: note: expanded from macro '__CLFN_ALL' | |
uchar4 __OVERLOAD__ name(uchar4 x, uchar4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1190:21: note: expanded from macro '__CLFN_ALL' | |
uchar8 __OVERLOAD__ name(uchar8 x, uchar8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1191:22: note: expanded from macro '__CLFN_ALL' | |
uchar16 __OVERLOAD__ name(uchar16 x,uchar16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1193:21: note: expanded from macro '__CLFN_ALL' | |
short2 __OVERLOAD__ name(short2 x, short2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1194:21: note: expanded from macro '__CLFN_ALL' | |
short3 __OVERLOAD__ name(short3 x, short3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1195:21: note: expanded from macro '__CLFN_ALL' | |
short4 __OVERLOAD__ name(short4 x, short4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1196:21: note: expanded from macro '__CLFN_ALL' | |
short8 __OVERLOAD__ name(short8 x, short8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1197:22: note: expanded from macro '__CLFN_ALL' | |
short16 __OVERLOAD__ name(short16 x, short16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1199:22: note: expanded from macro '__CLFN_ALL' | |
ushort2 __OVERLOAD__ name(ushort2 x, ushort2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1200:22: note: expanded from macro '__CLFN_ALL' | |
ushort3 __OVERLOAD__ name(ushort3 x, ushort3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1201:22: note: expanded from macro '__CLFN_ALL' | |
ushort4 __OVERLOAD__ name(ushort4 x, ushort4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1202:22: note: expanded from macro '__CLFN_ALL' | |
ushort8 __OVERLOAD__ name(ushort8 x, ushort8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1203:23: note: expanded from macro '__CLFN_ALL' | |
ushort16 __OVERLOAD__ name(ushort16 x, ushort16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1205:19: note: expanded from macro '__CLFN_ALL' | |
int2 __OVERLOAD__ name(int2 x, int2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1206:19: note: expanded from macro '__CLFN_ALL' | |
int3 __OVERLOAD__ name(int3 x, int3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1207:19: note: expanded from macro '__CLFN_ALL' | |
int4 __OVERLOAD__ name(int4 x, int4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1208:19: note: expanded from macro '__CLFN_ALL' | |
int8 __OVERLOAD__ name(int8 x, int8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1209:20: note: expanded from macro '__CLFN_ALL' | |
int16 __OVERLOAD__ name(int16 x, int16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1211:20: note: expanded from macro '__CLFN_ALL' | |
uint2 __OVERLOAD__ name(uint2 x, uint2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1212:20: note: expanded from macro '__CLFN_ALL' | |
uint3 __OVERLOAD__ name(uint3 x, uint3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1213:20: note: expanded from macro '__CLFN_ALL' | |
uint4 __OVERLOAD__ name(uint4 x, uint4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1214:20: note: expanded from macro '__CLFN_ALL' | |
uint8 __OVERLOAD__ name(uint8 x, uint8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1215:21: note: expanded from macro '__CLFN_ALL' | |
uint16 __OVERLOAD__ name(uint16 x, uint16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1217:20: note: expanded from macro '__CLFN_ALL' | |
long2 __OVERLOAD__ name(long2 x, long2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1218:20: note: expanded from macro '__CLFN_ALL' | |
long3 __OVERLOAD__ name(long3 x, long3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1219:20: note: expanded from macro '__CLFN_ALL' | |
long4 __OVERLOAD__ name(long4 x, long4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1220:20: note: expanded from macro '__CLFN_ALL' | |
long8 __OVERLOAD__ name(long8 x, long8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1221:21: note: expanded from macro '__CLFN_ALL' | |
long16 __OVERLOAD__ name(long16 x, long16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1223:21: note: expanded from macro '__CLFN_ALL' | |
ulong2 __OVERLOAD__ name(ulong2 x, ulong2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1224:21: note: expanded from macro '__CLFN_ALL' | |
ulong3 __OVERLOAD__ name(ulong3 x, ulong3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1225:21: note: expanded from macro '__CLFN_ALL' | |
ulong4 __OVERLOAD__ name(ulong4 x, ulong4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1226:21: note: expanded from macro '__CLFN_ALL' | |
ulong8 __OVERLOAD__ name(ulong8 x, ulong8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4826:12: note: candidate function | |
__CLFN_ALL(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1227:22: note: expanded from macro '__CLFN_ALL' | |
ulong16 __OVERLOAD__ name(ulong16 x, ulong16 y); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1230:49: note: expanded from macro '__CLFN_ALL_MODD' | |
#define __CLFN_ALL_MODD(name) char __OVERLOAD__ name(char x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1231:20: note: expanded from macro '__CLFN_ALL_MODD' | |
char2 __OVERLOAD__ name(char2 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1232:20: note: expanded from macro '__CLFN_ALL_MODD' | |
char3 __OVERLOAD__ name(char3 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1233:20: note: expanded from macro '__CLFN_ALL_MODD' | |
char4 __OVERLOAD__ name(char4 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1234:20: note: expanded from macro '__CLFN_ALL_MODD' | |
char8 __OVERLOAD__ name(char8 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1235:21: note: expanded from macro '__CLFN_ALL_MODD' | |
char16 __OVERLOAD__ name(char16 x, char y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1236:20: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar __OVERLOAD__ name(uchar x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1237:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar2 __OVERLOAD__ name(uchar2 x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1238:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar3 __OVERLOAD__ name(uchar3 x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1239:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar4 __OVERLOAD__ name(uchar4 x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1240:21: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar8 __OVERLOAD__ name(uchar8 x, uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1241:22: note: expanded from macro '__CLFN_ALL_MODD' | |
uchar16 __OVERLOAD__ name(uchar16 x,uchar y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1242:20: note: expanded from macro '__CLFN_ALL_MODD' | |
short __OVERLOAD__ name(short x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1243:21: note: expanded from macro '__CLFN_ALL_MODD' | |
short2 __OVERLOAD__ name(short2 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1244:21: note: expanded from macro '__CLFN_ALL_MODD' | |
short3 __OVERLOAD__ name(short3 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1245:21: note: expanded from macro '__CLFN_ALL_MODD' | |
short4 __OVERLOAD__ name(short4 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1246:21: note: expanded from macro '__CLFN_ALL_MODD' | |
short8 __OVERLOAD__ name(short8 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1247:22: note: expanded from macro '__CLFN_ALL_MODD' | |
short16 __OVERLOAD__ name(short16 x, short y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1248:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort __OVERLOAD__ name(ushort x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1249:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort2 __OVERLOAD__ name(ushort2 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1250:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort3 __OVERLOAD__ name(ushort3 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1251:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort4 __OVERLOAD__ name(ushort4 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1252:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort8 __OVERLOAD__ name(ushort8 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1253:23: note: expanded from macro '__CLFN_ALL_MODD' | |
ushort16 __OVERLOAD__ name(ushort16 x, ushort y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1255:19: note: expanded from macro '__CLFN_ALL_MODD' | |
int2 __OVERLOAD__ name(int2 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1256:19: note: expanded from macro '__CLFN_ALL_MODD' | |
int3 __OVERLOAD__ name(int3 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1257:19: note: expanded from macro '__CLFN_ALL_MODD' | |
int4 __OVERLOAD__ name(int4 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1258:19: note: expanded from macro '__CLFN_ALL_MODD' | |
int8 __OVERLOAD__ name(int8 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1259:20: note: expanded from macro '__CLFN_ALL_MODD' | |
int16 __OVERLOAD__ name(int16 x, int y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1266:19: note: expanded from macro '__CLFN_ALL_MODD' | |
long __OVERLOAD__ name(long x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1267:20: note: expanded from macro '__CLFN_ALL_MODD' | |
long2 __OVERLOAD__ name(long2 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1268:20: note: expanded from macro '__CLFN_ALL_MODD' | |
long3 __OVERLOAD__ name(long3 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1269:20: note: expanded from macro '__CLFN_ALL_MODD' | |
long4 __OVERLOAD__ name(long4 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1270:20: note: expanded from macro '__CLFN_ALL_MODD' | |
long8 __OVERLOAD__ name(long8 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1271:21: note: expanded from macro '__CLFN_ALL_MODD' | |
long16 __OVERLOAD__ name(long16 x, long y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1272:20: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong __OVERLOAD__ name(ulong x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1273:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong2 __OVERLOAD__ name(ulong2 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1274:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong3 __OVERLOAD__ name(ulong3 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1275:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong4 __OVERLOAD__ name(ulong4 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1276:21: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong8 __OVERLOAD__ name(ulong8 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1277:22: note: expanded from macro '__CLFN_ALL_MODD' | |
ulong16 __OVERLOAD__ name(ulong16 x, ulong y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1279:21: note: expanded from macro '__CLFN_ALL_MODD' | |
float2 __OVERLOAD__ name(float2 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1280:21: note: expanded from macro '__CLFN_ALL_MODD' | |
float3 __OVERLOAD__ name(float3 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1281:21: note: expanded from macro '__CLFN_ALL_MODD' | |
float4 __OVERLOAD__ name(float4 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1282:21: note: expanded from macro '__CLFN_ALL_MODD' | |
float8 __OVERLOAD__ name(float8 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1283:22: note: expanded from macro '__CLFN_ALL_MODD' | |
float16 __OVERLOAD__ name(float16 x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1285:22: note: expanded from macro '__CLFN_ALL_MODD' | |
double2 __OVERLOAD__ name(double2 x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1286:22: note: expanded from macro '__CLFN_ALL_MODD' | |
double3 __OVERLOAD__ name(double3 x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1287:22: note: expanded from macro '__CLFN_ALL_MODD' | |
double4 __OVERLOAD__ name(double4 x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1288:22: note: expanded from macro '__CLFN_ALL_MODD' | |
double8 __OVERLOAD__ name(double8 x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4827:17: note: candidate function | |
__CLFN_ALL_MODD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1289:23: note: expanded from macro '__CLFN_ALL_MODD' | |
double16 __OVERLOAD__ name(double16 x, double y); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:996:48: note: expanded from macro '__CLFN_FD_2FD' | |
#define __CLFN_FD_2FD(name) float __OVERLOAD__ name(float x, float y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:997:21: note: expanded from macro '__CLFN_FD_2FD' | |
float2 __OVERLOAD__ name(float2 x, float2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:998:21: note: expanded from macro '__CLFN_FD_2FD' | |
float3 __OVERLOAD__ name(float3 x, float3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:999:21: note: expanded from macro '__CLFN_FD_2FD' | |
float4 __OVERLOAD__ name(float4 x, float4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1000:21: note: expanded from macro '__CLFN_FD_2FD' | |
float8 __OVERLOAD__ name(float8 x, float8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1001:22: note: expanded from macro '__CLFN_FD_2FD' | |
float16 __OVERLOAD__ name(float16 x, float16 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1002:21: note: expanded from macro '__CLFN_FD_2FD' | |
double __OVERLOAD__ name(double x, double y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1003:22: note: expanded from macro '__CLFN_FD_2FD' | |
double2 __OVERLOAD__ name(double2 x, double2 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1004:22: note: expanded from macro '__CLFN_FD_2FD' | |
double3 __OVERLOAD__ name(double3 x, double3 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1005:22: note: expanded from macro '__CLFN_FD_2FD' | |
double4 __OVERLOAD__ name(double4 x, double4 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1006:22: note: expanded from macro '__CLFN_FD_2FD' | |
double8 __OVERLOAD__ name(double8 x, double8 y); \ | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:4828:15: note: candidate function | |
__CLFN_FD_2FD(min); | |
^ | |
/System/Library/Frameworks/OpenCL.framework/Versions/A/lib/clang/3.2/include/cl_kernel.h:1007:23: note: expanded from macro '__CLFN_FD_2FD' | |
double16 __OVERLOAD__ name(double16 x, double16 y); | |
^ | |
) | |
exit status 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did you fix this issue?
I met similar issue when port cl to mac.