Changeset 23597
- Timestamp:
- 01/03/19 20:24:10 (6 years ago)
- 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 510 510 511 511 for(i=0;i<nummodels;i++){ 512 printf(" ==== %s ====\n",EnumToStringx(this->analysis_type_list[i])); 512 513 this->constraints_list[i]->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); 513 514 this->loads_list[i]->Marshall(pmarshalled_data,pmarshalled_data_size,marshall_direction); -
TabularUnified issm/trunk-jpl/src/c/classes/Nodes.cpp ¶
r23587 r23597 101 101 } 102 102 /*}}}*/ 103 void Nodes::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/103 void Nodes::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 104 104 105 105 int num_procs=IssmComm::GetSize(); … … 108 108 MARSHALLING(test); 109 109 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 113 113 if(marshall_direction == MARSHALLING_BACKWARD){ 114 114 this->common_recv_ids = xNew<int*>(num_procs); 115 115 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); 117 127 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 } 123 131 } 124 132 /*}}}*/ … … 228 236 229 237 /*Gather from all cpus: */ 230 ISSM_MPI_Allreduce ( 238 ISSM_MPI_Allreduce ((void*)&numdofs,(void*)&allnumdofs,1,ISSM_MPI_INT,ISSM_MPI_SUM,IssmComm::GetComm()); 231 239 return allnumdofs; 232 240 } … … 265 273 266 274 /*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()); 268 276 269 277 return allnumnodes; 270 278 } 271 279 /*}}}*/ 272 bool Nodes::RequiresDofReindexing(void){/*{{{*/280 bool Nodes::RequiresDofReindexing(void){/*{{{*/ 273 281 274 282 int flag = 0;
Note:
See TracChangeset
for help on using the changeset viewer.