Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • The third option is to use out-of-core sparse direct solver.
    Code Block
      EigenSolver: {
        NumEigenvalues:     1
        FrequencyShift:             10.e9
        Memory: 1000  //if the memory usage of the matrix factor in any process is larger than 1000MBytes, 
                                //switch to use out-of-core solver. 
      }
    
  • The fourth option is to use float version of the sparse direct solver.
    Code Block
    
      EigenSolver: {
        NumEigenvalues:     1
        FrequencyShift:             10.e9
        Preconditioner: MUMPSFLOAT //use the float version. memory usage reduced into half. 
      }