Changeset 25605
- Timestamp:
- 09/28/20 17:32:06 (5 years ago)
- Location:
- issm/branches/trunk-larour-SLPS2020/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-larour-SLPS2020/src/c/main/issm_dakota.cpp
r25600 r25605 16 16 17 17 /*prototypes:*/ 18 intdirstructure(int argc,char** argv);18 bool dirstructure(int argc,char** argv); 19 19 int issm_dakota_statistics(int argc,char** argv); 20 20 … … 27 27 char* dakota_output_file = NULL; 28 28 char* dakota_error_file = NULL; 29 bool statistics=false; 29 30 30 31 /*Define MPI_DEBUG in dakota_global_defs.cpp to cause a hold here*/ … … 45 46 46 47 /*Create directory structure for model outputs:*/ 47 dirstructure(argc,argv);48 statistics=dirstructure(argc,argv); 48 49 49 50 /* Parse input and construct Dakota LibraryEnvironment, performing input data checks*/ … … 92 93 93 94 /* Run statistics if requested:*/ 94 i ssm_dakota_statistics(argc,argv);95 if(statistics)issm_dakota_statistics(argc,argv); 95 96 96 97 /*free allocations:*/ … … 107 108 108 109 } /*}}}*/ 109 intdirstructure(int argc,char** argv){ /*{{{*/110 bool dirstructure(int argc,char** argv){ /*{{{*/ 110 111 111 112 char* input_file; … … 141 142 delete iomodel; 142 143 fclose(fid); 143 return 0;144 return false; //important return value! 144 145 } 145 146 … … 159 160 //close model file: 160 161 fclose(fid); 162 163 //return value: 164 return true; //statistics computation on! 161 165 } /*}}}*/ 162 166 int issm_dakota_statistics(int argc,char** argv){ /*{{{*/ … … 285 289 /*fetch indices: */ 286 290 sprintf(string,"md.qmu.statistics.method(%i).indices",i); 287 iomodel->FetchData(&indices,& nindices,&dummy,string);291 iomodel->FetchData(&indices,&dummy,&nindices,string); 288 292 parameters->AddObject(new IntVecParam(IndicesEnum,indices,nindices)); 289 293 -
issm/branches/trunk-larour-SLPS2020/src/c/modules/OutputResultsx/OutputResultsx.cpp
r25596 r25605 74 74 femmodel->parameters->FindParam(&currEvalId,QmuCurrEvalIdEnum); 75 75 femmodel->parameters->FindParam(&statistics,QmuStatisticsEnum); 76 femmodel->parameters->FindParam(&nfilesperdirectory,QmuNfilesPerDirectoryEnum);77 76 78 77 if(statistics){ 78 femmodel->parameters->FindParam(&nfilesperdirectory,QmuNfilesPerDirectoryEnum); 79 79 femmodel->parameters->FindParam(&root,RootPathEnum); 80 80 femmodel->parameters->FindParam(&modelname,ModelnameEnum); -
issm/branches/trunk-larour-SLPS2020/src/c/modules/QmuStatisticsx/QmuStatisticsx.cpp
r25599 r25605 1003 1003 int nfields; 1004 1004 int range,lower_row,upper_row; 1005 int nfilesperdirectory; 1005 1006 int* indices=NULL; 1006 1007 int nindices; … … 1018 1019 int* xsize=NULL; 1019 1020 1021 /*only work on the statistical communicator: */ 1022 if (color==MPI_UNDEFINED)return 0; 1023 1020 1024 /*Retrieve parameters:*/ 1021 1025 parameters->FindParam(&nsamples,QmuNsampleEnum); … … 1026 1030 parameters->FindParam(&indices,&nindices,IndicesEnum); 1027 1031 1028 /*Get rank:*/ 1032 /*Get rank from the stat comm communicator:*/ 1033 IssmComm::SetComm(statcomm); 1029 1034 int my_rank=IssmComm::GetRank(); 1030 1035 … … 1144 1149 } 1145 1150 } 1146 1151 _printf0_("Done with SampleSeries :\n"); 1152 IssmComm::SetComm(ISSM_MPI_COMM_WORLD); 1147 1153 1148 1154 } /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.