[HIPIFY][tests] Fix typo in test for CUDA 10.x

[ROCm/hip commit: 8bca9f1d7a]
This commit is contained in:
Evgeny Mankov
2019-04-01 19:52:08 +03:00
parent 3b28e2f9b4
commit 7bbf825c74
@@ -131,7 +131,7 @@ int main(int argc, char*argv[])
// CHECK: assert(HIPSPARSE_STATUS_SUCCESS == status);
assert(CUSPARSE_STATUS_SUCCESS == status);
// CHECK: cublasStat = hipblasCreate(&cublasH);
cublasStat = cublasCreate(cublasH);
cublasStat = cublasCreate(&cublasH);
// CHECK: assert(HIPBLAS_STATUS_SUCCESS == cublasStat);
assert(CUBLAS_STATUS_SUCCESS == cublasStat);
// CHECK: cublasStat = hipblasSetStream(cublasH, stream);