Added support for __mul24 and __umul24

Dieser Commit ist enthalten in:
Elias Konstantinidis
2016-10-02 10:07:31 +03:00
committet von Maneesh Gupta
Ursprung 3b55dcbf6c
Commit 2bc541e15f
2 geänderte Dateien mit 14 neuen und 0 gelöschten Zeilen
Normale Datei → Ausführbare Datei
+11
Datei anzeigen
@@ -1672,6 +1672,17 @@ __device__ unsigned int atomicDec(unsigned int* address,
return hc::__atomic_wrapdec(address,val);
}
//__mul24 __umul24
__device__ int __mul24(int arg1,
int arg2)
{
return hc::__mul24(arg1, arg2);
}
__device__ unsigned int __umul24(unsigned int arg1,
unsigned int arg2)
{
return hc::__mul24(arg1, arg2);
}
__device__ unsigned int test__popc(unsigned int input)
{