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
a0902ad8
Commit
a0902ad8
authored
9 years ago
by
Adam J. Stewart
Browse files
Options
Downloads
Patches
Plain Diff
Change variant defaults and add comment
parent
9519f3d9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
var/spack/repos/builtin/packages/cuda/package.py
+5
-1
5 additions, 1 deletion
var/spack/repos/builtin/packages/cuda/package.py
var/spack/repos/builtin/packages/hoomd-blue/package.py
+4
-3
4 additions, 3 deletions
var/spack/repos/builtin/packages/hoomd-blue/package.py
with
9 additions
and
4 deletions
var/spack/repos/builtin/packages/cuda/package.py
+
5
−
1
View file @
a0902ad8
...
@@ -13,7 +13,11 @@ class Cuda(Package):
...
@@ -13,7 +13,11 @@ class Cuda(Package):
For the Installer Type, select runfile and click Download. Spack will search
For the Installer Type, select runfile and click Download. Spack will search
your current directory for this file. Alternatively, add this file to a
your current directory for this file. Alternatively, add this file to a
mirror so that Spack can find it. For instructions on how to set up a mirror,
mirror so that Spack can find it. For instructions on how to set up a mirror,
see http://software.llnl.gov/spack/mirrors.html
"""
see http://software.llnl.gov/spack/mirrors.html
Note: This package does not currently install the drivers necessary to run
CUDA. These will need to be installed manually. See:
http://docs.nvidia.com/cuda/cuda-getting-started-guide-for-linux for details.
"""
homepage
=
"
http://www.nvidia.com/object/cuda_home_new.html
"
homepage
=
"
http://www.nvidia.com/object/cuda_home_new.html
"
...
...
This diff is collapsed.
Click to expand it.
var/spack/repos/builtin/packages/hoomd-blue/package.py
+
4
−
3
View file @
a0902ad8
...
@@ -16,9 +16,9 @@ class HoomdBlue(Package):
...
@@ -16,9 +16,9 @@ class HoomdBlue(Package):
version
(
'
1.3.3
'
,
'
1469ef4531dc14b579c0acddbfe6a273
'
)
version
(
'
1.3.3
'
,
'
1469ef4531dc14b579c0acddbfe6a273
'
)
variant
(
'
mpi
'
,
default
=
Fals
e
,
description
=
'
Compile with MPI enabled
'
)
variant
(
'
mpi
'
,
default
=
Tru
e
,
description
=
'
Compile with MPI enabled
'
)
variant
(
'
cuda
'
,
default
=
Fals
e
,
description
=
'
Compile with CUDA Toolkit
'
)
variant
(
'
cuda
'
,
default
=
Tru
e
,
description
=
'
Compile with CUDA Toolkit
'
)
variant
(
'
doc
'
,
default
=
Fals
e
,
description
=
'
Generate documentation
'
)
variant
(
'
doc
'
,
default
=
Tru
e
,
description
=
'
Generate documentation
'
)
extends
(
'
python
'
)
extends
(
'
python
'
)
depends_on
(
'
py-numpy
'
)
depends_on
(
'
py-numpy
'
)
...
@@ -56,6 +56,7 @@ def install(self, spec, prefix):
...
@@ -56,6 +56,7 @@ def install(self, spec, prefix):
# There may be a bug in the MPI-CUDA code. See:
# There may be a bug in the MPI-CUDA code. See:
# https://groups.google.com/forum/#!msg/hoomd-users/2griTESmc5I/E69s_M5fDwAJ
# https://groups.google.com/forum/#!msg/hoomd-users/2griTESmc5I/E69s_M5fDwAJ
# This prevented "make test" from passing for me.
cmake_args
.
append
(
'
-DENABLE_MPI_CUDA=OFF
'
)
cmake_args
.
append
(
'
-DENABLE_MPI_CUDA=OFF
'
)
# Documentation
# Documentation
...
...
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