Skip to content

Commit

Permalink
firedrake-install: can now use mumps with 64bit int
Browse files Browse the repository at this point in the history
  • Loading branch information
ksagiyam committed Jul 28, 2022
1 parent cc252bf commit c3e8cc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/firedrake-install
Original file line number Diff line number Diff line change
Expand Up @@ -627,13 +627,13 @@ def get_minimal_petsc_packages():
pkgs.add("superlu_dist")
# Parallel mesh partitioner
pkgs.add("ptscotch")
# Sparse direct solver
pkgs.add("scalapack") # Needed for mumps
pkgs.add("mumps")
if not options["complex"]:
# AMG
pkgs.add("hypre")
if options["petsc_int_type"] == "int32":
# Sparse direct solver
pkgs.add("scalapack") # Needed for mumps
pkgs.add("mumps")
# Serial mesh partitioner
pkgs.add("chaco")
return pkgs
Expand Down

0 comments on commit c3e8cc4

Please sign in to comment.