Changeset 21852
- Timestamp:
- 07/24/17 14:22:15 (8 years ago)
- Location:
- issm/trunk-jpl/src
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/main/issm_ocean.cpp
r21525 r21852 7 7 int main(int argc,char **argv){ 8 8 9 // /*diverse:*/ 10 // int nummodels = 2; 11 // int* commsizes=xNew<int>(nummodels); 12 // int* rankzeros=xNew<int>(nummodels); 13 // char** modelnames=xNew<char*>(nummodels); 14 // char** dirnames=xNew<char*>(nummodels); 15 // int iceid=0; 16 // int oceanid=1; 9 /*diverse:*/ 10 int icecommsize; 11 int rankzeros[2]; 12 int my_rank; 13 ISSM_MPI_Comm worldcomm; 14 17 15 // int modelid; 18 // int my_rank;19 16 // int count=0; 20 // ISSM_MPI_Comm worldcomm; 21 // ISSM_MPI_Comm modelcomm; 22 // ISSM_MPI_Comm toonceancomm; 23 // ISSM_MPI_Comm fromicecomms; 17 ISSM_MPI_Comm modelcomm; 18 ISSM_MPI_Comm frommitgcm; 19 ISSM_MPI_Comm tomitgcmcomm; 24 20 25 21 /*Initialize exception trapping: */ 26 22 ExceptionTrapBegin(); 27 23 28 // /*Initialize environment (MPI, PETSC, MUMPS, etc ...)*/ 29 // worldcomm=EnvironmentInit(argc,argv); 30 // 31 // /*What is my rank?:*/ 32 // ISSM_MPI_Comm_rank(worldcomm,&my_rank); 33 // 34 // /*First model is ice, second is ocean*/ 35 // for(int i=0;i<nummodels;i++){ 36 // char* string=NULL; 37 // 38 // string=xNew<char>(strlen(argv[5+3*i])+1); 39 // xMemCpy<char>(string,argv[5+3*i],strlen(argv[5+3*i])+1); 40 // dirnames[i]=string; 41 // 42 // string=xNew<char>(strlen(argv[5+3*i+1])+1); 43 // xMemCpy<char>(string,argv[5+3*i+1],strlen(argv[5+3*i+1])+1); 44 // modelnames[i]=string; 45 // 46 // commsizes[i]=(int) strtol(argv[5+3*i+2], (char **)NULL, 10); 47 // } 48 // 49 // /*Figure out which model each cpu will belong to: */ 50 // count=0; 51 // for(int i=0;i<nummodels;i++){ 52 // if(my_rank>=count && my_rank<(count+commsizes[i])){ 53 // modelid=i; 54 // break; 55 // } 56 // count+=commsizes[i]; 57 // } 58 // /*Buil array of who is rank 0 of their own group:*/ 59 // count=0; 60 // for(int i=0;i<nummodels;i++){ 61 // rankzeros[i]=count; 62 // count+=commsizes[i]; 63 // } 64 // /*}}}*/ 65 // 66 // /*Split world into sub-communicators for each and every model:*/ 67 // ISSM_MPI_Comm_split(worldcomm,modelid, my_rank, &modelcomm); 68 // 69 // /*Build inter communicators:*/ // change to Dimitris solution 70 // if(modelid==iceid){ 71 // ISSM_MPI_Intercomm_create( modelcomm, 0, worldcomm, rankzeros[oceanid], iceid, fromicecomms+i); //communicate from local erth comm 9rank 0) to ice comm (rank 0) using modelid tag. 72 // } 73 // else{ 74 // ISSM_MPI_Intercomm_create( modelcomm, 0, worldcomm, rankzeros[iceid], oceanid, &toearthcomm); //communicate from local ice comm (rank 0) to earth comm (rank 0) using modelid tag. 75 // } 24 /*Initialize environment (MPI, PETSC, MUMPS, etc ...)*/ 25 worldcomm=EnvironmentInit(argc,argv); 26 27 /*What is my rank?:*/ 28 ISSM_MPI_Comm_rank(worldcomm,&my_rank); 76 29 77 // /*Supply specific argc and argv for each sub-communicator (corresponding to each model specificatiions):{{{*/ 78 // char** arguments=xNew<char*>(4); 79 // arguments[0]=xNew<char>(strlen(argv[0])+1); xMemCpy<char>(arguments[0],argv[0],strlen(argv[0])+1); //executable name 80 // arguments[1]=xNew<char>(strlen(argv[1])+1); xMemCpy<char>(arguments[1],argv[1],strlen(argv[1])+1); //solution name 81 // arguments[2]=xNew<char>(strlen(argv[5+3*modelid])+1); xMemCpy<char>(arguments[2],argv[5+3*modelid],strlen(argv[5+3*modelid])+1); //directory name 82 // arguments[3]=xNew<char>(strlen(argv[5+3*modelid+1])+1); xMemCpy<char>(arguments[3],argv[5+3*modelid+1],strlen(argv[5+3*modelid+1])+1); //model name 83 // /*}}}*/ 84 // 30 /*First model is ice, second is ocean*/ 31 /*ice comm size: */ 32 icecommsize=(int) strtol(argv[2], (char **)NULL, 10); 85 33 86 //REMOVE 87 /*Initialize environment (MPI, PETSC, MUMPS, etc ...)*/ 88 ISSM_MPI_Comm comm_init=EnvironmentInit(argc,argv); 34 /*Buil array of who is rank 0 of their own group:*/ 35 rankzeros[0]=0; 36 rankzeros[1]=icecommsize; 37 38 /*Split world into sub-communicators for each and every model:*/ 39 ISSM_MPI_Comm_split(worldcomm,0, my_rank, &modelcomm); 40 41 ISSM_MPI_Intercomm_create( modelcomm, 0, worldcomm, rankzeros[1], 0, &tomitgcmcomm); 42 89 43 /*Initialize femmodel from arguments provided command line: */ 90 FemModel *femmodel = new FemModel(argc,argv,comm_init); 91 ///*Initialize femmodel from arguments provided command line: */ 92 //FemModel *femmodel = new FemModel(1,arguments,modelcomm); 44 FemModel *femmodel = new FemModel(argc,argv,modelcomm); 93 45 94 // /*Now that the models are initialized, keep communicator information in the parameters datasets of each model: */ 95 // femmodel->parameters->AddObject(new GenericParam<ISSM_MPI_Comm>(worldcomm,WorldCommEnum)); 96 // femmodel->parameters->AddObject(new IntParam(NumModelsEnum,nummodels)); 97 // femmodel->parameters->AddObject(new IntParam(ModelIdEnum,oceanid)); 98 // femmodel->parameters->AddObject(new IntParam(EarthIdEnum,iceid)); 99 // if(modelid==earthid) femmodel->parameters->AddObject(new GenericParam<ISSM_MPI_Comm*>(fromicecomms,IcecapToEarthCommEnum)); 100 // else femmodel->parameters->AddObject(new GenericParam<ISSM_MPI_Comm>(toearthcomm,IcecapToEarthCommEnum)); 46 /*Now that the models are initialized, keep communicator information in the parameters datasets of each model: */ 47 femmodel->parameters->AddObject(new GenericParam<ISSM_MPI_Comm>(worldcomm,WorldCommEnum)); 48 femmodel->parameters->AddObject(new GenericParam<ISSM_MPI_Comm>(tomitgcmcomm,ToMITgcmCommEnum)); 101 49 102 50 /*Solve: */ … … 118 66 ExceptionTrapEnd(); 119 67 120 ///*Free ressources:*/68 /*Free ressources:*/ 121 69 // xDelete<int>(commsizes); 122 // for(int i=0;i<nummodels;i++){123 // char* string=NULL;124 // string=dirnames[i]; xDelete<char>(string);125 // string=modelnames[i]; xDelete<char>(string);126 // }127 // xDelete<char*>(dirnames);128 // xDelete<char*>(modelnames);129 70 130 71 /*Return unix success: */ -
issm/trunk-jpl/src/c/shared/Enum/EnumDefinitions.h
r21808 r21852 16 16 WorldCommEnum, 17 17 IcecapToEarthCommEnum, 18 ToMITgcmCommEnum, 18 19 NumModelsEnum, 19 20 ModelIdEnum, -
issm/trunk-jpl/src/c/shared/Enum/EnumToStringx.cpp
r21808 r21852 24 24 case WorldCommEnum : return "WorldComm"; 25 25 case IcecapToEarthCommEnum : return "IcecapToEarthComm"; 26 case ToMITgcmCommEnum : return "ToMITgcmComm"; 26 27 case NumModelsEnum : return "NumModels"; 27 28 case ModelIdEnum : return "ModelId"; -
issm/trunk-jpl/src/c/shared/Enum/StringToEnumx.cpp
r21808 r21852 24 24 else if (strcmp(name,"WorldComm")==0) return WorldCommEnum; 25 25 else if (strcmp(name,"IcecapToEarthComm")==0) return IcecapToEarthCommEnum; 26 else if (strcmp(name,"ToMITgcmComm")==0) return ToMITgcmCommEnum; 26 27 else if (strcmp(name,"NumModels")==0) return NumModelsEnum; 27 28 else if (strcmp(name,"ModelId")==0) return ModelIdEnum; … … 136 137 else if (strcmp(name,"HydrologyshreveStabilization")==0) return HydrologyshreveStabilizationEnum; 137 138 else if (strcmp(name,"Hydrologydc")==0) return HydrologydcEnum; 138 else if (strcmp(name,"SedimentHead")==0) return SedimentHeadEnum;139 139 else stage=2; 140 140 } 141 141 if(stage==2){ 142 if (strcmp(name,"SedimentHeadOld")==0) return SedimentHeadOldEnum; 142 if (strcmp(name,"SedimentHead")==0) return SedimentHeadEnum; 143 else if (strcmp(name,"SedimentHeadOld")==0) return SedimentHeadOldEnum; 143 144 else if (strcmp(name,"SedimentHeadResidual")==0) return SedimentHeadResidualEnum; 144 145 else if (strcmp(name,"EffectivePressure")==0) return EffectivePressureEnum; … … 259 260 else if (strcmp(name,"NewDamage")==0) return NewDamageEnum; 260 261 else if (strcmp(name,"StressIntensityFactor")==0) return StressIntensityFactorEnum; 261 else if (strcmp(name,"CalvingLaw")==0) return CalvingLawEnum;262 262 else stage=3; 263 263 } 264 264 if(stage==3){ 265 if (strcmp(name,"CalvingCalvingrate")==0) return CalvingCalvingrateEnum; 265 if (strcmp(name,"CalvingLaw")==0) return CalvingLawEnum; 266 else if (strcmp(name,"CalvingCalvingrate")==0) return CalvingCalvingrateEnum; 266 267 else if (strcmp(name,"CalvingMeltingrate")==0) return CalvingMeltingrateEnum; 267 268 else if (strcmp(name,"CalvingLevermann")==0) return CalvingLevermannEnum; … … 382 383 else if (strcmp(name,"BalancethicknessOmega")==0) return BalancethicknessOmegaEnum; 383 384 else if (strcmp(name,"BalancethicknessD0")==0) return BalancethicknessD0Enum; 384 else if (strcmp(name,"Smb")==0) return SmbEnum;385 385 else stage=4; 386 386 } 387 387 if(stage==4){ 388 if (strcmp(name,"SmbAnalysis")==0) return SmbAnalysisEnum; 388 if (strcmp(name,"Smb")==0) return SmbEnum; 389 else if (strcmp(name,"SmbAnalysis")==0) return SmbAnalysisEnum; 389 390 else if (strcmp(name,"SmbSolution")==0) return SmbSolutionEnum; 390 391 else if (strcmp(name,"SmbNumRequestedOutputs")==0) return SmbNumRequestedOutputsEnum; … … 505 506 else if (strcmp(name,"MassFlux")==0) return MassFluxEnum; 506 507 else if (strcmp(name,"MeltingOffset")==0) return MeltingOffsetEnum; 507 else if (strcmp(name,"Misfit")==0) return MisfitEnum;508 508 else stage=5; 509 509 } 510 510 if(stage==5){ 511 if (strcmp(name,"Pressure")==0) return PressureEnum; 511 if (strcmp(name,"Misfit")==0) return MisfitEnum; 512 else if (strcmp(name,"Pressure")==0) return PressureEnum; 512 513 else if (strcmp(name,"PressurePicard")==0) return PressurePicardEnum; 513 514 else if (strcmp(name,"AndroidFrictionCoefficient")==0) return AndroidFrictionCoefficientEnum; … … 628 629 else if (strcmp(name,"Outputdefinition21")==0) return Outputdefinition21Enum; 629 630 else if (strcmp(name,"Outputdefinition22")==0) return Outputdefinition22Enum; 630 else if (strcmp(name,"Outputdefinition23")==0) return Outputdefinition23Enum;631 631 else stage=6; 632 632 } 633 633 if(stage==6){ 634 if (strcmp(name,"Outputdefinition24")==0) return Outputdefinition24Enum; 634 if (strcmp(name,"Outputdefinition23")==0) return Outputdefinition23Enum; 635 else if (strcmp(name,"Outputdefinition24")==0) return Outputdefinition24Enum; 635 636 else if (strcmp(name,"Outputdefinition25")==0) return Outputdefinition25Enum; 636 637 else if (strcmp(name,"Outputdefinition26")==0) return Outputdefinition26Enum; … … 751 752 else if (strcmp(name,"ToolkitsFileName")==0) return ToolkitsFileNameEnum; 752 753 else if (strcmp(name,"RootPath")==0) return RootPathEnum; 753 else if (strcmp(name,"OutputFileName")==0) return OutputFileNameEnum;754 else if (strcmp(name,"InputFileName")==0) return InputFileNameEnum;755 754 else stage=7; 756 755 } 757 756 if(stage==7){ 758 if (strcmp(name,"LockFileName")==0) return LockFileNameEnum; 757 if (strcmp(name,"OutputFileName")==0) return OutputFileNameEnum; 758 else if (strcmp(name,"InputFileName")==0) return InputFileNameEnum; 759 else if (strcmp(name,"LockFileName")==0) return LockFileNameEnum; 759 760 else if (strcmp(name,"RestartFileName")==0) return RestartFileNameEnum; 760 761 else if (strcmp(name,"ToolkitsOptionsAnalyses")==0) return ToolkitsOptionsAnalysesEnum; … … 874 875 else if (strcmp(name,"Node")==0) return NodeEnum; 875 876 else if (strcmp(name,"Numericalflux")==0) return NumericalfluxEnum; 876 else if (strcmp(name,"Neumannflux")==0) return NeumannfluxEnum;877 else if (strcmp(name,"Param")==0) return ParamEnum;878 877 else stage=8; 879 878 } 880 879 if(stage==8){ 881 if (strcmp(name,"Moulin")==0) return MoulinEnum; 880 if (strcmp(name,"Neumannflux")==0) return NeumannfluxEnum; 881 else if (strcmp(name,"Param")==0) return ParamEnum; 882 else if (strcmp(name,"Moulin")==0) return MoulinEnum; 882 883 else if (strcmp(name,"Pengrid")==0) return PengridEnum; 883 884 else if (strcmp(name,"Penpair")==0) return PenpairEnum; … … 997 998 else if (strcmp(name,"IceMass")==0) return IceMassEnum; 998 999 else if (strcmp(name,"IceVolume")==0) return IceVolumeEnum; 999 else if (strcmp(name,"IceVolumeAboveFloatation")==0) return IceVolumeAboveFloatationEnum;1000 else if (strcmp(name,"TotalFloatingBmb")==0) return TotalFloatingBmbEnum;1001 1000 else stage=9; 1002 1001 } 1003 1002 if(stage==9){ 1004 if (strcmp(name,"TotalGroundedBmb")==0) return TotalGroundedBmbEnum; 1003 if (strcmp(name,"IceVolumeAboveFloatation")==0) return IceVolumeAboveFloatationEnum; 1004 else if (strcmp(name,"TotalFloatingBmb")==0) return TotalFloatingBmbEnum; 1005 else if (strcmp(name,"TotalGroundedBmb")==0) return TotalGroundedBmbEnum; 1005 1006 else if (strcmp(name,"TotalSmb")==0) return TotalSmbEnum; 1006 1007 else if (strcmp(name,"P0")==0) return P0Enum; -
issm/trunk-jpl/src/m/classes/clusters/localpfe.m
r21765 r21852 148 148 end 149 149 %}}} 150 function BuildQueueScriptIceOcean(cluster,dirname,modelname,solution,io_gather,isvalgrind,isgprof,isdakota) % {{{ 151 152 %write queuing script 153 %what is the executable being called? 154 executable='issm_ocean.exe'; 155 156 fid=fopen([modelname '.queue'],'w'); 157 fprintf(fid,'#!%s\n',cluster.shell); 158 fprintf(fid,'mpiexec -np %i %s/%s %s %s %s: -np %i ./mitgcmuv\n',cluster.np,cluster.codepath,executable,solution,cluster.executionpath,modelname,cluster.npocean); 159 fclose(fid); 160 161 %in interactive mode, create a run file, and errlog and outlog file 162 if cluster.interactive, 163 fid=fopen([modelname '.errlog'],'w'); fclose(fid); 164 fid=fopen([modelname '.outlog'],'w'); fclose(fid); 165 end 166 end 167 %}}} 150 168 function BuildKrigingQueueScript(cluster,modelname,solution,io_gather,isvalgrind,isgprof) % {{{ 151 169 … … 226 244 227 245 end %}}} 246 function LaunchQueueJobIceOcean(cluster,modelname,dirname,filelist,restart,batch)% {{{ 247 248 %figure out what shell extension we will use: 249 if isempty(strfind(cluster.shell,'csh')), 250 shellext='sh'; 251 else 252 shellext='csh'; 253 end 254 255 if cluster.verbose, disp('launching solution sequence on remote cluster'); end 256 257 launchcommand=['cd ' cluster.executionpath ' && rm -rf *.lock && tar -zxf ' dirname '.tar.gz && rm -rf *.tar.gz']; 258 issmssh(cluster.name,cluster.login,cluster.port,launchcommand); 259 260 end %}}} 228 261 function Download(cluster,dirname,filelist)% {{{ 229 262
Note:
See TracChangeset
for help on using the changeset viewer.