forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
neuron, coreneuron, nmodl: modern units by default
- Loading branch information
1 parent
1e393c7
commit ba4f8b1
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ class Neuron(CMakePackage): | |
patch("patch-v800-cmake-nvhpc.patch", when="@8.0.0%nvhpc^[email protected]:") | ||
|
||
version("develop", branch="master") | ||
version("9.0.a7", commit="67a672a") | ||
version("9.0.a8", commit="67a672a") | ||
version("9.0.a5", commit="522c866") | ||
version("9.0.a4", commit="de2c927") | ||
version("9.0.a3", commit="afce1ef") | ||
|
@@ -90,7 +90,7 @@ class Neuron(CMakePackage): | |
multi=True, | ||
values=("None", "olfactory", "channel-benchmark", "tqperf-heavy"), | ||
) | ||
variant("legacy-unit", default=True, description="Enable legacy units") | ||
variant("legacy-unit", default=False, description="Enable legacy units") | ||
variant("caliper", default=False, description="Add LLNL/Caliper support") | ||
|
||
# extra variants from coreneuron recipe | ||
|
@@ -102,7 +102,7 @@ class Neuron(CMakePackage): | |
variant("openmp", default=False, description="Enable OpenMP support", when="@9:") | ||
variant("report", default=True, description="Enable SONATA reports") | ||
variant("shared", default=True, description="Build shared library") | ||
nmodl_variant_exists = "@9:9.0.a7 +coreneuron" | ||
nmodl_variant_exists = "@9:9.0.a8 +coreneuron" | ||
variant( | ||
"nmodl", | ||
default=True, | ||
|