Multi-Node rocshmem_finalize() bug (#138)

[ROCm/rocshmem commit: 3f01d89207]
This commit is contained in:
Yiltan
2025-06-04 10:02:03 -04:00
committed by GitHub
parent 032d5e5c6b
commit bceeadeb63
18 changed files with 175 additions and 237 deletions
@@ -39,11 +39,8 @@ int main(int argc, char *argv[]) {
/***
* Select a GPU
*/
int rank = rocshmem_my_pe();
int ndevices, my_device = 0;
CHECK_HIP(hipGetDeviceCount(&ndevices));
my_device = rank % ndevices;
CHECK_HIP(hipSetDevice(my_device));
char* ompi_local_rank = getenv("OMPI_COMM_WORLD_LOCAL_RANK");
CHECK_HIP(hipSetDevice(atoi(ompi_local_rank)));
/**
* Must initialize rocshmem to access arguments needed by the tester.