We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4735e5 commit 5b58c32Copy full SHA for 5b58c32
arcane/src/arcane/parallel/mpi/ArcaneMpi.cc
@@ -60,7 +60,14 @@ arcaneIsHipAwareMPI()
60
// MPICH
61
#if defined(ARCANE_OS_LINUX)
62
#if defined(MPIX_GPU_SUPPORT_HIP)
63
+ // CRAY MPICH
64
+# if defined(CRAY_MPICH_VERSION)
65
+ int is_supported = 0;
66
+ MPIX_GPU_query_support(MPIX_GPU_SUPPORT_HIP,&is_supported);
67
+ is_aware = (is_supported!=0);
68
+# else
69
is_aware = (MPIX_Query_hip_support()==1);
70
+# endif
71
#endif
72
73
// OpenMPI:
0 commit comments