Skip to content

Commit

Permalink
Remove GPU init code, it made some tests with many MPI fail
Browse files Browse the repository at this point in the history
  • Loading branch information
pghysels committed Apr 14, 2023
1 parent bde7666 commit 515b9f1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/dense/CUDAWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,6 @@ namespace strumpack {
cudaSetDevice(rank % devs);
}
#endif
gpu_check(cudaFree(0));
gpu::BLASHandle hb;
gpu::SOLVERHandle hs;
}

void gemm(BLASHandle& handle, cublasOperation_t transa,
Expand Down
3 changes: 0 additions & 3 deletions src/dense/HIPWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ namespace strumpack {
gpu_check(hipSetDevice(rank % devs));
}
#endif
gpu_check(hipFree(0));
gpu::BLASHandle hb;
gpu::SOLVERHandle hs;
}

void gemm(BLASHandle& handle, hipblasOperation_t transa,
Expand Down

0 comments on commit 515b9f1

Please sign in to comment.