Implement hipHostFree on HCC path

This commit is contained in:
Ben Sander
2016-03-19 23:25:11 -05:00
vanhempi 9941ba0bc6
commit deb38625ca
2 muutettua tiedostoa jossa 17 lisäystä ja 1 poistoa
@@ -740,6 +740,15 @@ hipError_t hipFree(void* ptr);
hipError_t hipFreeHost(void* ptr) __attribute__((deprecated("use hipHostFree instead"))) ;
/**
* @brief Free memory allocated by the hcc hip host memory allocation API
*
* @param[in] ptr Pointer to memory to be freed
* @return #hipSuccess, #hipErrorMemoryFree
*/
hipError_t hipHostFree(void* ptr);
/**
* @brief Copy data from src to dst.