Changed module api to work with nvcc and hipcc path

- Added cuda and cudart linking for nvcc path in hipcc
- Added hipMemcpyHtoD and hipMemcpyDtoH for nvcc path
- Changed hipDeviceptr to hipDeviceptr_t
- Fixed hipMemcpy*to* API signatues

Change-Id: I6ef076b507f92502efda475c83dcdcdd462afc37


[ROCm/hip commit: 4b377f63d0]
This commit is contained in:
Aditya Atluri
2016-08-29 15:05:12 -05:00
parent 8cae08c2d7
commit dd8f451428
5 changed files with 44 additions and 18 deletions
+1 -1
View File
@@ -280,7 +280,7 @@ Kernel argument preparation.
}
hipError_t hipModuleGetGlobal(hipDeviceptr *dptr, size_t *bytes,
hipError_t hipModuleGetGlobal(hipDeviceptr_t *dptr, size_t *bytes,
hipModule_t hmod, const char* name){
HIP_INIT_API(name);
hipError_t ret = hipSuccess;