Changeset 22391


Ignore:
Timestamp:
02/05/18 10:45:28 (7 years ago)
Author:
seroussi
Message:

CHG: trying to exchange information

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/main/issm_ocean.cpp

    r22389 r22391  
    1515        ISSM_MPI_Comm frommitgcm;
    1616        ISSM_MPI_Comm tomitgcmcomm;
     17        ISSM_MPI_Status status
    1718
    1819        /*Initialize exception trapping: */
     
    4142
    4243        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);
    4354
    4455        /*Initialize femmodel from arguments provided command line: */
Note: See TracChangeset for help on using the changeset viewer.