Changeset 23597


Ignore:
Timestamp:
01/03/19 20:24:10 (6 years ago)
Author:
Mathieu Morlighem
Message:

CHG: added marshalling of comms

Location:
issm/trunk-jpl/src/c/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/c/classes/FemModel.cpp

    r23588 r23597  
    510510
    511511        for(i=0;i<nummodels;i++){
     512                printf(" ==== %s  ====\n",EnumToStringx(this->analysis_type_list[i]));
    512513                this->constraints_list[i]->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
    513514                this->loads_list[i]->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
  • TabularUnified issm/trunk-jpl/src/c/classes/Nodes.cpp

    r23587 r23597  
    101101}
    102102/*}}}*/
    103 void Nodes::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
     103void  Nodes::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/
    104104
    105105        int num_procs=IssmComm::GetSize();
     
    108108        MARSHALLING(test);
    109109        if(test!=num_procs) _error_("number of cores is not the same as before");
    110         /*
    111         MARSHALLING_DYNAMIC(this->common_recv,int,num_procs);
    112         MARSHALLING_DYNAMIC(this->common_send,int,num_procs);
     110
     111        DataSet::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
     112
    113113        if(marshall_direction == MARSHALLING_BACKWARD){
    114114                this->common_recv_ids = xNew<int*>(num_procs);
    115115                this->common_send_ids = xNew<int*>(num_procs);
    116         }
     116                for(int i=0;i<num_procs;i++){
     117                        this->common_recv_ids[i] = NULL;
     118                        this->common_send_ids[i] = NULL;
     119                }
     120        }
     121
     122        /*Stop here if no nodes*/
     123        if(this->Size()==0) return;
     124
     125        MARSHALLING_DYNAMIC(this->common_recv,int,num_procs);
     126        MARSHALLING_DYNAMIC(this->common_send,int,num_procs);
    117127        for(int i=0;i<num_procs;i++){
    118                 MARSHALLING_DYNAMIC(this->common_recv_ids[i],int,this->common_recv[i]);
    119                 MARSHALLING_DYNAMIC(this->common_send_ids[i],int,this->common_send[i]);
    120         }
    121         */
    122         DataSet::Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction);
     128                if(this->common_recv[i]) MARSHALLING_DYNAMIC(this->common_recv_ids[i],int,this->common_recv[i]);
     129                if(this->common_send[i]) MARSHALLING_DYNAMIC(this->common_send_ids[i],int,this->common_send[i]);
     130        }
    123131}
    124132/*}}}*/
     
    228236
    229237        /*Gather from all cpus: */
    230         ISSM_MPI_Allreduce ( (void*)&numdofs,(void*)&allnumdofs,1,ISSM_MPI_INT,ISSM_MPI_SUM,IssmComm::GetComm());
     238        ISSM_MPI_Allreduce ((void*)&numdofs,(void*)&allnumdofs,1,ISSM_MPI_INT,ISSM_MPI_SUM,IssmComm::GetComm());
    231239        return allnumdofs;
    232240}
     
    265273
    266274        /*Gather from all cpus: */
    267         ISSM_MPI_Allreduce ( (void*)&numnodes,(void*)&allnumnodes,1,ISSM_MPI_INT,ISSM_MPI_SUM,IssmComm::GetComm());
     275        ISSM_MPI_Allreduce((void*)&numnodes,(void*)&allnumnodes,1,ISSM_MPI_INT,ISSM_MPI_SUM,IssmComm::GetComm());
    268276
    269277        return allnumnodes;
    270278}
    271279/*}}}*/
    272 bool Nodes::RequiresDofReindexing(void){/*{{{*/
     280bool  Nodes::RequiresDofReindexing(void){/*{{{*/
    273281
    274282        int flag = 0;
Note: See TracChangeset for help on using the changeset viewer.