-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Correct `.gitmodules` - Update all git submodules to latest released versions, except google-benchmark - Have CHANGELOG - Breaking changes since v0.7: - A change in API: `arbor.cable_cell` has the labels and decor arguments swapped. I.e.: `(tree, labels, decor)` -> `(tree, decor, label)`. Labels are now optional. - Mechanism ABI version is bumped to 0.3.1. #1884 - Remove the `generate-catalogue` script. `modcc` accepts now a list of NMODL files and is able to spit out a catalogue.cpp file - Rename spike detector -> threshold detector - Remove access to time `t` in NMODL. - Major dependency version bumps: - GCC: 9 and up - CUDA: 11 and up - Clang: 10 and up
- Loading branch information
1 parent
1b268ec
commit 8e82ec1
Showing
10 changed files
with
677 additions
and
28 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.7.1-dev | ||
0.8.0 |
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
Submodule json
updated
1404 files
Submodule pybind11
updated
68 files
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 |
---|---|---|
|
@@ -53,8 +53,8 @@ class Arbor(CMakePackage, CudaPackage): | |
) | ||
|
||
# https://docs.arbor-sim.org/en/latest/install/build_install.html#compilers | ||
conflicts("%gcc@:8.3") | ||
conflicts("%clang@:7") | ||
conflicts("%gcc@:8") | ||
conflicts("%clang@:9") | ||
# Cray compiler v9.2 and later is Clang-based. | ||
conflicts("%cce@:9.1") | ||
conflicts("%intel") | ||
|
@@ -63,10 +63,13 @@ class Arbor(CMakePackage, CudaPackage): | |
|
||
# misc dependencies | ||
depends_on("[email protected]:", when="@0.5.3:") # required by the modcc compiler | ||
depends_on("[email protected]:", when="@0.7.1:") | ||
depends_on("nlohmann-json") | ||
depends_on("random123") | ||
depends_on("cuda@10:", when="+cuda") | ||
depends_on("libxml2", when="+neuroml") | ||
with when("+cuda"): | ||
depends_on("cuda@10:") | ||
depends_on("cuda@11:", when="@0.7.1:") | ||
|
||
# mpi | ||
depends_on("mpi", when="+mpi") | ||
|
@@ -79,7 +82,7 @@ class Arbor(CMakePackage, CudaPackage): | |
with when("+python"): | ||
depends_on("[email protected]:", type=("build")) | ||
depends_on("[email protected]:", when="@0.5.3:", type=("build")) | ||
depends_on("[email protected].0:", when="@0.7.1:", type=("build")) | ||
depends_on("[email protected].1:", when="@0.7.1:", type=("build")) | ||
|
||
# sphinx based documentation | ||
depends_on("[email protected]:", when="+doc", type="build") | ||
|