summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fastmath/package.py
blob: 601f779839c212978829f48c2858259761ec33af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class Fastmath(BundlePackage):
    """FASTMath is a suite of ~15 numerical libraries frequently used together
    in various SciDAC and CSE applications. The suite includes discretization
    libraries for structured, AMR and unstructured grids as well as solver
    libraries for ODE's, Time Integrators, Iterative, Non-Linear, and Direct
    Solvers."""

    homepage = "https://fastmath-scidac.org/"

    version("latest")

    depends_on("amrex")  # default is 3 dimensions
    depends_on("chombo@3.2")
    depends_on("hypre~internal-superlu")
    # depends_on('ml-trilinos')  # hoping for stripped down install of just ml
    # depends_on('nox-trilinos') # hoping for stripped down install of just nox
    depends_on("mpi")
    depends_on("arpack-ng")
    depends_on("petsc")
    depends_on("phasta")
    depends_on("pumi")
    depends_on("sundials")
    depends_on("superlu-dist")
    depends_on("trilinos")
    depends_on("zoltan")