Skip to content

Commit

Permalink
try again with intel...
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Applencourt committed Jul 24, 2024
1 parent 677f7cf commit 62231c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xprof/sync_daemon_mpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ int MPIX_Init_Session(MPI_Session *lib_shandle, MPI_Comm *lib_comm) {
/*
* check we got thread support level foo library needs
*/
/*
CHECK_MPI(MPI_Session_get_info(*lib_shandle, &tinfo));
{
char out_value[100]; /* large enough */
char out_value[100]; //
int valuelen = sizeof(out_value);
int flag;
CHECK_MPI(MPI_Info_get_string(tinfo, mt_key, &valuelen, out_value, &flag));
Expand All @@ -49,6 +50,7 @@ int MPIX_Init_Session(MPI_Session *lib_shandle, MPI_Comm *lib_comm) {
fprintf(stderr, "THAPI_SYNC_DAEMON_MPI Warning: Did not get MPI_THREAD_SINGLE, got %s\n",
out_value);
}
*/
/*
* create a group from the WORLD process set
*/
Expand Down

0 comments on commit 62231c9

Please sign in to comment.