Remove autosave files from saravan's PR

This commit is contained in:
Todd Gamblin 2015-06-06 14:02:10 -07:00
parent 422a75e4b8
commit 03780ea105
2 changed files with 0 additions and 41 deletions

View File

@ -1,15 +0,0 @@
from spack import *
class Arpack(Package):
"""ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
homepage = "http://www.caam.rice.edu/software/ARPACK/"
url = "http://www.caam.rice.edu/software/ARPACK/SRC/arpack96.tar.gz"
version('96', 'fffaa970198b285676f4156cebc8626e')
depends_on("blas")
depends_on("lapack")
def install(self, spec, prefix):

View File

@ -1,26 +0,0 @@
from spack import *
class Hypre(Package):
"""Hypre is a library of high performance preconditioners that features parallel multigrid
methods for both structured and unstructured grid problems."""
homepage = "https://computation.llnl.gov/project/linear_solvers/software.php"
url = "https://computation.llnl.gov/project/linear_solvers/download/hypre-2.10.0b.tar.gz"
version('2.10.0b', '768be38793a35bb5d055905b271f5b8e')
depends_on("openmpi")
depends_on("blas")
depends_on("lapack")
def install(self, spec, prefix):
lapack_dir = spec['lapack'].prefix
configure(
"--prefix=%s" % prefix,
"--with-blas-libs=blas",
"--with-blas-lib-dirs=%s/lib" % spec['blas'].prefix,
"--with-lapack-libs=lapack blas",
"--with-lapack-lib-dirs=%s/lib" % lapack_dir)
make()
make("install")