Multi-Node rocshmem_finalize() bug (#138)

This commit is contained in:
Yiltan
2025-06-04 10:02:03 -04:00
کامیت شده توسط GitHub
والد ca5fdd4718
کامیت 3f01d89207
18فایلهای تغییر یافته به همراه175 افزوده شده و 237 حذف شده
@@ -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.