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
d7ff4b8f
Commit
d7ff4b8f
authored
8 years ago
by
Jon Rood
Committed by
becker33
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Updating Trilinos with superlu variant and fixing git branch version options. (#2604)
parent
36072c47
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
var/spack/repos/builtin/packages/trilinos/package.py
+25
-1
25 additions, 1 deletion
var/spack/repos/builtin/packages/trilinos/package.py
with
25 additions
and
1 deletion
var/spack/repos/builtin/packages/trilinos/package.py
+
25
−
1
View file @
d7ff4b8f
...
@@ -45,7 +45,10 @@ class Trilinos(CMakePackage):
...
@@ -45,7 +45,10 @@ class Trilinos(CMakePackage):
homepage
=
"
https://trilinos.org/
"
homepage
=
"
https://trilinos.org/
"
base_url
=
"
https://github.com/trilinos/Trilinos/archive
"
base_url
=
"
https://github.com/trilinos/Trilinos/archive
"
version
(
'
develop
'
,
git
=
'
https://github.com/trilinos/Trilinos.git
'
,
tag
=
'
master
'
)
version
(
'
develop
'
,
git
=
'
https://github.com/trilinos/Trilinos.git
'
,
tag
=
'
develop
'
)
version
(
'
master
'
,
git
=
'
https://github.com/trilinos/Trilinos.git
'
,
tag
=
'
master
'
)
version
(
'
12.10.1
'
,
'
40f28628b63310f9bd17c26d9ebe32b1
'
)
version
(
'
12.10.1
'
,
'
40f28628b63310f9bd17c26d9ebe32b1
'
)
version
(
'
12.8.1
'
,
'
01c0026f1e2050842857db941060ecd5
'
)
version
(
'
12.8.1
'
,
'
01c0026f1e2050842857db941060ecd5
'
)
version
(
'
12.6.4
'
,
'
c2ea7b5aa0d10bcabdb9b9a6e3bac3ea
'
)
version
(
'
12.6.4
'
,
'
c2ea7b5aa0d10bcabdb9b9a6e3bac3ea
'
)
...
@@ -71,6 +74,8 @@ def url_for_version(self, version):
...
@@ -71,6 +74,8 @@ def url_for_version(self, version):
description
=
'
Compile with support for MUMPS solvers
'
)
description
=
'
Compile with support for MUMPS solvers
'
)
variant
(
'
superlu-dist
'
,
default
=
True
,
variant
(
'
superlu-dist
'
,
default
=
True
,
description
=
'
Compile with SuperluDist solvers
'
)
description
=
'
Compile with SuperluDist solvers
'
)
variant
(
'
superlu
'
,
default
=
False
,
description
=
'
Compile with SuperLU solvers
'
)
variant
(
'
hypre
'
,
default
=
True
,
variant
(
'
hypre
'
,
default
=
True
,
description
=
'
Compile with Hypre preconditioner
'
)
description
=
'
Compile with Hypre preconditioner
'
)
variant
(
'
hdf5
'
,
default
=
True
,
description
=
'
Compile with HDF5
'
)
variant
(
'
hdf5
'
,
default
=
True
,
description
=
'
Compile with HDF5
'
)
...
@@ -111,6 +116,7 @@ def url_for_version(self, version):
...
@@ -111,6 +116,7 @@ def url_for_version(self, version):
depends_on
(
'
scalapack
'
,
when
=
'
+mumps
'
)
depends_on
(
'
scalapack
'
,
when
=
'
+mumps
'
)
depends_on
(
'
superlu-dist@:4.3
'
,
when
=
'
@:12.6.1+superlu-dist
'
)
depends_on
(
'
superlu-dist@:4.3
'
,
when
=
'
@:12.6.1+superlu-dist
'
)
depends_on
(
'
superlu-dist
'
,
when
=
'
@12.6.2:+superlu-dist
'
)
depends_on
(
'
superlu-dist
'
,
when
=
'
@12.6.2:+superlu-dist
'
)
depends_on
(
'
superlu+fpic@4.3
'
,
when
=
'
+superlu
'
)
depends_on
(
'
hypre~internal-superlu
'
,
when
=
'
+hypre
'
)
depends_on
(
'
hypre~internal-superlu
'
,
when
=
'
+hypre
'
)
depends_on
(
'
hdf5+mpi
'
,
when
=
'
+hdf5
'
)
depends_on
(
'
hdf5+mpi
'
,
when
=
'
+hdf5
'
)
depends_on
(
'
python
'
,
when
=
'
+python
'
)
depends_on
(
'
python
'
,
when
=
'
+python
'
)
...
@@ -127,6 +133,10 @@ def variants_check(self):
...
@@ -127,6 +133,10 @@ def variants_check(self):
# working.
# working.
raise
RuntimeError
(
'
The superlu-dist variant can only be used
'
+
raise
RuntimeError
(
'
The superlu-dist variant can only be used
'
+
'
with Trilinos @12.0.1:
'
)
'
with Trilinos @12.0.1:
'
)
if
'
+superlu-dist
'
in
self
.
spec
and
'
+superlu
'
in
self
.
spec
:
# Only choose one type of superlu
raise
RuntimeError
(
'
The superlu-dist and superlu variant
'
+
'
cannot be used together
'
)
def
cmake_args
(
self
):
def
cmake_args
(
self
):
spec
=
self
.
spec
spec
=
self
.
spec
...
@@ -320,6 +330,20 @@ def cmake_args(self):
...
@@ -320,6 +330,20 @@ def cmake_args(self):
'
-DTPL_ENABLE_SuperLUDist:BOOL=OFF
'
,
'
-DTPL_ENABLE_SuperLUDist:BOOL=OFF
'
,
])
])
# superlu:
if
'
+superlu
'
in
spec
:
options
.
extend
([
'
-DTPL_ENABLE_SuperLU:BOOL=ON
'
,
'
-DSuperLU_LIBRARY_DIRS=%s
'
%
spec
[
'
superlu
'
].
prefix
.
lib
,
'
-DSuperLU_INCLUDE_DIRS=%s
'
%
spec
[
'
superlu
'
].
prefix
.
include
])
else
:
options
.
extend
([
'
-DTPL_ENABLE_SuperLU:BOOL=OFF
'
,
])
# python
# python
if
'
+python
'
in
spec
:
if
'
+python
'
in
spec
:
options
.
extend
([
options
.
extend
([
...
...
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