Change-Id: Ia36bb9425671ef7659541c9aeedae4098456a31b
Этот коммит содержится в:
Rahul Garg
2017-06-30 10:11:41 +05:30
родитель 3e610ab0fe
Коммит 65cb024b61
2 изменённых файлов: 20 добавлений и 12 удалений
+2 -2
Просмотреть файл
@@ -876,9 +876,9 @@ inline static hipError_t hipDeviceGetPCIBusId(char* pciBusId,int len,hipDevice_t
return hipCUDAErrorTohipError(cudaDeviceGetPCIBusId(pciBusId,len,device));
}
inline static hipError_t hipDeviceGetByPCIBusId(int* device, const int *pciBusId)
inline static hipError_t hipDeviceGetByPCIBusId(int* device, const char *pciBusId)
{
return hipCUDAErrorTohipError(cudaDeviceGetByPCIBusId(device,(char*)pciBusId));
return hipCUDAErrorTohipError(cudaDeviceGetByPCIBusId(device, pciBusId));
}
inline static hipError_t hipDeviceGetLimit(size_t *pValue, hipLimit_t limit)