Split files based on functionality and changed cmake file

[ROCm/hip commit: 794007c3e8]
Esse commit está contido em:
Aditya Atluri
2016-03-24 04:57:30 -05:00
commit 702672c3df
15 arquivos alterados com 527 adições e 3185 exclusões
+1 -1
Ver Arquivo
@@ -222,7 +222,7 @@ static inline hipError_t hipMalloc ( T** devPtr, size_t size)
// Provide an override to automatically typecast the pointer type from void**, and also provide a default for the flags.
template<class T>
static inline hipError_t hipHostMalloc( T** ptr, size_t size, unsigned int flags = hipHostMallocDefault)
static inline hipError_t hipHostMalloc( T** ptr, size_t size, unsigned int flags = 0)
{
return hipHostMalloc((void**)ptr, size, flags);
}