Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
03780ea1
Commit
03780ea1
authored
9 years ago
by
Todd Gamblin
Browse files
Options
Downloads
Patches
Plain Diff
Remove autosave files from saravan's PR
parent
422a75e4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
var/spack/packages/arpack/package.py.save
+0
-15
0 additions, 15 deletions
var/spack/packages/arpack/package.py.save
var/spack/packages/hypre/package.py.save
+0
-26
0 additions, 26 deletions
var/spack/packages/hypre/package.py.save
with
0 additions
and
41 deletions
var/spack/packages/arpack/package.py.save
deleted
100644 → 0
+
0
−
15
View file @
422a75e4
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):
This diff is collapsed.
Click to expand it.
var/spack/packages/hypre/package.py.save
deleted
100644 → 0
+
0
−
26
View file @
422a75e4
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")
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment