Changeset 11466


Ignore:
Timestamp:
02/17/12 12:01:12 (13 years ago)
Author:
Eric.Larour
Message:

Fixed issues with the MUMPS solver. Up to now, we never checked that the MUMPS
solver had been compiled. Now added this check in Solverx.cpp.
Also worked on the default solvers if MUMPS is not available -> solver.m and model.m and ismumps.m

Location:
issm/trunk-jpl/src
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/Solverx/Solverx.cpp

    r11465 r11466  
    108108        #endif
    109109        /*}}}*/
     110        /*Check the solver is available: {{{1*/
     111        if(solver_type==MUMPSPACKAGE_LU || solver_type==MUMPSPACKAGE_CHOL){
     112        #if _PETSC_MAJOR_ >=3
     113                #ifndef _HAVE_MUMPS_
     114                _error_("requested MUMPS solver, which was not compiled into ISSM!\n");
     115                #endif
     116
     117        #endif
     118        }
     119        /*}}}*/
    110120        /*Prepare solver:{{{1*/
    111121        KSPCreate(MPI_COMM_WORLD,&ksp);
  • issm/trunk-jpl/src/c/toolkits/petsc/patches/PetscOptionsDetermineSolverType.cpp

    r9826 r11466  
    4949                solver_type=SUPERLUDISTPACKAGE;
    5050        }
     51        if (strcmp(option,"")==0){
     52                solver_type=SUPERLUDISTPACKAGE;
     53        }
     54
     55
     56        #if _PETSC_MAJOR_ >= 3
     57        PetscOptionsGetString(PETSC_NULL,"-pc_factor_mat_solver_package",&option[0],100,&flag);
     58        if (strcmp(option,"mumps")==0){
     59                solver_type=MUMPSPACKAGE_LU;
     60        }
     61        #endif
     62
    5163       
    5264        PetscOptionsGetString(PETSC_NULL,"-issm_option_solver",&option[0],100,&flag);
  • issm/trunk-jpl/src/m/classes/model/model.m

    r11139 r11466  
    404404                         md.settings         = settings();
    405405                         md.solver           = solver();
    406                          md.solver           = addoptions(md.solver,DiagnosticVertAnalysisEnum,mumpsoptions);
     406                         if ismumps,
     407                                 md.solver           = addoptions(md.solver,DiagnosticVertAnalysisEnum,mumpsoptions);
     408                         else
     409                                 md.solver           = addoptions(md.solver,DiagnosticVertAnalysisEnum,iluasmoptions);
     410                         end
    407411                         md.cluster          = none();
    408412                         md.balancethickness = balancethickness();
  • issm/trunk-jpl/src/m/classes/solver.m

    r11389 r11466  
    2727
    2828                         %MUMPS is the default solver
    29                          obj.options={'NoneAnalysis',mumpsoptions};
     29                         if ismumps,
     30                                 obj.options={'NoneAnalysis',mumpsoptions};
     31                         else
     32                                 obj.options={'NoneAnalysis',iluasmoptions};
     33                         end
    3034
    3135                 end % }}}
Note: See TracChangeset for help on using the changeset viewer.