[HIPIFY][tests] Rename the ambiguous call as well

[ROCm/clr commit: f68bee02f5]
Этот коммит содержится в:
Evgeny Mankov
2019-10-25 16:07:31 +03:00
родитель 91732f98c0
Коммит bcc9d88b20
+1 -1
Просмотреть файл
@@ -73,7 +73,7 @@ static const char * GetErrorString(cusparseStatus_t error) {
static void CudaSparseCheckCore(cusparseStatus_t code, const char *file, int line) {
// CHECK: if (code != HIPSPARSE_STATUS_SUCCESS) {
if (code != CUSPARSE_STATUS_SUCCESS) {
fprintf(stderr,"Cuda Error %d : %s %s %d\n", code, cusparseGetErrorString(code), file, line);
fprintf(stderr,"Cuda Error %d : %s %s %d\n", code, GetErrorString(code), file, line);
exit(code);
}
}