Skip to content
Snippets Groups Projects
  1. Dec 14, 2017
    • Markus Blatt's avatar
      Fix segmentation fault in AMG if matrix of one rank is empty. · 1b126e17
      Markus Blatt authored
      For a matrix with any rows in a parallel run, The subgraph
      containing only vertices associated with matrix rows owned by
      the process would have 1 vertex although the actual matrix graph
      would have none. This is fixed by checking the number of vertices
      of the outer graph and act correctly for zero vertices.
      For this we need to mark a matrix without rows built in row_wise mode
      as built once the CreateIterator is constructed and correct the number
      of vertices for a Subgraph of a MatrixGraph with 0 vertices.
      1b126e17
  2. Nov 22, 2017
  3. Nov 20, 2017
    • Bernd Flemisch's avatar
      Deprecate SeqPardiso and remove test_pardiso. · 4c55a5aa
      Bernd Flemisch authored
      The preconditioner `SeqPardiso` using the sparse direct solver
      library Pardiso has not been actively maintained for several
      years. It is still based on a very old Pardiso version; finding
      the library never went into the CMake build system. Moreover,
      Pardiso is not open source. With SuperLU and UMFPack, two working
      alternative direct solvers are available.
      
      Drop the support for Pardiso by deprecating `SeqPardiso` and
      removing the corresponding test.
      4c55a5aa
  4. Nov 15, 2017
  5. Nov 13, 2017
  6. Nov 10, 2017
  7. Nov 06, 2017
  8. Nov 03, 2017
  9. Oct 23, 2017
  10. Oct 05, 2017
    • Carsten Gräser's avatar
      Merge branch 'feature/remove-warning' into 'master' · 9c0eb7fd
      Carsten Gräser authored
      Comment out warnings
      
      See merge request !121
      9c0eb7fd
    • Carsten Gräser's avatar
      Comment out warnings · b4299314
      Carsten Gräser authored
      These warnings are very irritating. They do not
      warn about deprecated or misused feature. They are
      issued any time you compile the tests. They don't
      provide any useful information unless you look at the
      code and have insight in the implementation detains.
      
      To sum up: They don't look like a warning addressed to
      the user, but like a reminder on an intended future
      implementation addressed to the implementor. Hence
      they should not be exposed to the user.
      
      If anyone feels that this is an important user warning
      feel free to re-enable it after adding enough information
      making the warning actually useful.
      b4299314
    • Dominic Kempf's avatar
      Merge branch 'feature/disable-cg-condition-estimate-vc' into 'master' · 835f0b87
      Dominic Kempf authored
      [bugfix] Avoid calling std::real for unsupported types
      
      See merge request !120
      835f0b87
    • Carsten Gräser's avatar
      [bugfix] Avoid calling std::real for unsupported types · 80dc9ec9
      Carsten Gräser authored
      The condition estimate is only supported for field_types
      float and double. Unfortunately, compiling this failed
      for any field_type not supported by std::real. Replacing the
      dynamic check by a static one helps to avoid the problem.
      80dc9ec9
Loading