Changeset 22391
- Timestamp:
- 02/05/18 10:45:28 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/main/issm_ocean.cpp
r22389 r22391 15 15 ISSM_MPI_Comm frommitgcm; 16 16 ISSM_MPI_Comm tomitgcmcomm; 17 ISSM_MPI_Status status 17 18 18 19 /*Initialize exception trapping: */ … … 41 42 42 43 ISSM_MPI_Intercomm_create( modelcomm, 0, worldcomm, my_local_size, 0, &tomitgcmcomm); 44 45 /*send an integer:*/ 46 int dummy1,dummy2; 47 dummy1=3; dummy2=0; 48 if(my_local_rank==0){ 49 MPI_Send(&dummy1,1,MPI_INT,0,1,tomitgcmcomm); 50 MPI_Recv(&dummy2,1,MPI_INT,0,1,tomitgcmcomm,&status); 51 } 52 MPI_Bcast(&dummy2,1,MPI_INT,0,modelcomm); 53 printf("Ice: dummy received: %i\n",dummy2); 43 54 44 55 /*Initialize femmodel from arguments provided command line: */
Note:
See TracChangeset
for help on using the changeset viewer.