Fixed hipDeviceGetPCIBusId for HIP/NVCC

Change-Id: I662efa148257a710f09002850b41d57bef00dff3


[ROCm/hip commit: d6db525f51]
This commit is contained in:
Rahul Garg
2017-06-29 00:13:02 +05:30
rodzic ff48608355
commit 9e55cdfa90
@@ -873,7 +873,7 @@ inline static hipError_t hipDeviceGetName(char *name,int len,hipDevice_t device)
inline static hipError_t hipDeviceGetPCIBusId(char* pciBusId,int len,hipDevice_t device)
{
return hipCUResultTohipError(cuDeviceGetPCIBusId(pciBusId,len,device));
return hipCUDAErrorTohipError(cudaDeviceGetPCIBusId(pciBusId,len,device));
}
inline static hipError_t hipDeviceGetByPCIBusId(int* device, const int *pciBusId)