Changeset 27077


Ignore:
Timestamp:
06/19/22 15:34:34 (3 years ago)
Author:
Eric.Larour
Message:

CHG: constructor now takes care of running pre core activities that won't be run during
each sample instantiation of a UQ run.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-larour-SLPS2022/src/c/classes/Dakota/IssmParallelDirectApplicInterface.cpp

    r26468 r27077  
    2020                int world_rank;
    2121                ISSM_MPI_Comm_rank(ISSM_MPI_COMM_WORLD,&world_rank);
     22                void     (*solutionprecore)(FemModel*) = NULL;
     23                int        solution_type;
    2224
    2325                /*Build an femmodel if you are a slave, using the corresponding communicator:*/
     
    2527                        femmodel_init= new FemModel(argc,argv,evaluation_comm);
    2628                        femmodel_init->profiler->Start(CORE);
     29
     30                        /*Launch cores that build data only once, for all future solutions during the uncertainty quantification: */
     31                        femmodel_init->parameters->FindParam(&solution_type,SolutionTypeEnum);
     32                        WrapperPreCorePointerFromSolutionEnum(&solutionprecore,femmodel_init->parameters,solution_type);
     33                        if(solutionprecore)solutionprecore(femmodel_init);
    2734                }
    2835
     
    5562                bool       control_analysis         = false;
    5663                void     (*solutioncore)(FemModel*) = NULL;
    57                 void     (*solutionprecore)(FemModel*) = NULL;
    5864                bool       nodakotacore             = true;
    5965
     
    94100                /*Initialize responses: */
    95101                responses=xNewZeroInit<IssmDouble>(numFns);
    96 
    97                 /*Launch cores that are not used during the uncertainty quantification: */
    98                 WrapperPreCorePointerFromSolutionEnum(&solutionprecore,femmodel_init->parameters,solution_type);
    99                 if(solutionprecore)solutionprecore(femmodel_init);
    100102
    101103                /*Make a copy of femmodel, so we start this new evaluation run for this specific sample with a brand
Note: See TracChangeset for help on using the changeset viewer.