Added new Memory API's (#1399)

Added new memory API's hipMemAllocPitch, hipMemAllocHost, hipMemsetD16, hipMemsetD16Async, hipMemsetD8Async
Modified to support all scenarios hipMemcpyParam2DAsync, hipMemcpyParam2D.


[ROCm/clr commit: 96890792b0]
This commit is contained in:
ansurya
2019-10-04 13:36:31 +05:30
committed by Maneesh Gupta
parent e5a2ba9602
commit efc64a4f8a
12 changed files with 404 additions and 48 deletions
@@ -234,7 +234,7 @@ void checkFunctional() {
int main() {
bool* result{nullptr};
hipHostMalloc(&result, sizeof(result));
hipMemAllocHost((void**)&result, sizeof(result));
result[0] = false;
hipLaunchKernelGGL(