Fixed hipDeviceGetPCIBusId for HIP/NVCC

Change-Id: I662efa148257a710f09002850b41d57bef00dff3
Este commit está contenido en:
Rahul Garg
2017-06-29 00:13:02 +05:30
padre a7c727f352
commit 38d48b5cf0
@@ -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)