- Feb 05, 2021
-
-
Nora Abi Akar authored
* Move contents of `arbornml` to to `arborio` * `arborio` will be built with NeuroML2 morphology support if `ARB_CMAKE_NEUROML` is set. * Wrap `arborio::neuroml` and `arborio::morphology_data` for pyarb. * Add documentation. * add `neuroml` flag to `setup.py` Fixes #1256 Fixes #1234
-
thorstenhater authored
Add more GitHub actions CI configurations * min and max versions of ubuntu, clang and gcc for linux * MacOS tests with min and max clang versions. Fixes #1337
-
- Feb 04, 2021
-
-
thorstenhater authored
Fixes #1340.
-
Nora Abi Akar authored
* Added a `POST_EVENTS` procedure to nmodl, that takes an argument that represents the time since the last spike on the cell. In the event of multiple detectors on the cell, and multiple spikes on the detectors within the same integration period, all spikes will be processed by the synapse. Spikes are processed only once and then cleared. * Added 3 vectors to the shared state required to dispatch post-events: `cv_to_cell` map, `time_since_spike` holding max(num_detectors) slots per cell, and `src_to_spike` mapping spike sources (detectors) to slots in `time_since_spike`. * Renamed `vec_ci_` to `vec_di_` (to better reflect that it stands for **domain index**). Named the new `cv_to_cell` index as `vec_ci_` in the mechanisms. * Fixed existing unit tests and added new tests for the new post-events functionality. Fixes #1206
-
- Feb 03, 2021
-
-
thorstenhater authored
First phase of dynamically loaded mechanism catalogues. - Add functionality to load and use catalogues from DSOs in Python and C++. - Add documentation and support scripts to build catalogues DSOs. - Re-factor CMakeLists.txt for mechanisms - Limitations - Needs (compatible, preferably identical) arbor sources when building catalogues - Can only work on MacOS and Linux (uses dlfnc)
-
- Feb 02, 2021
-
-
Brent Huisman authored
-
- Jan 28, 2021
-
-
thorstenhater authored
-
- Jan 27, 2021
-
-
thorstenhater authored
Ranges (both <,> and FROM/TO) can now be real-valued and negative. - Allow negative and real numbers in `<..., ...>` and `FROM ... TO ...` - Add and extend tests.
-
- Jan 25, 2021
-
-
Sam Yates authored
* Respect CMAKE_INSTALL_PREFIX in python lib path * Set `base` and `platbase` to the CMAKE_INSTALL_PREFIX, if defined, when asking Python for the default python lib install path. * Differentiate between explicit and default prefix. * Test for defaulted CMAKE_INSTALL_PREFIX, in which case, use the system python site packages path, so that it's overall less excitingly awful in python virtual environments. If you want /usr/local, set it.
-
Brent Huisman authored
-
- Jan 22, 2021
-
-
Sebastian Schmitt authored
-
- Jan 19, 2021
-
-
Brent Huisman authored
-
- Jan 15, 2021
-
-
Nora Abi Akar authored
-
- Jan 14, 2021
-
-
Brent Huisman authored
* Used Sphinx glossary directive to create terms that can be referred to in `concepts/morphology.rst` and `concepts/labels.rst`. * Added note box on difference with Neuron, add source for NEURON cylinder discretisation * Parameters added to svg generation script: turn off colors, root * Fix cpp TOC duplication, match ordering in other sections. * State default cv policy * center/re -> midpoints * Clarify and remove compartment term
-
- Jan 11, 2021
-
-
thorstenhater authored
Introduce two minor changes to the Python API to handle mechanism_catalogues idiomatically. Instead of import arbor as A cat = A.default_catalogue() if cat.has('hh'): print("Found HH.") for mech in cat.keys(): print("*", mech) we can now write import arbor as A cat = A.default_catalogue() if 'hh' in cat: print("Found HH.") for mech in cat: print("*", mech) which is closer to the expectations of Python users.
-
Brent Huisman authored
-
- Jan 08, 2021
-
-
Brent Huisman authored
* Add docs tutorial page for single_cell_recipe.py example * Adapted single_cell_recipe.py slightly * Improved labels and fixed some broken cross-linking * Fixed a typo here and there
-
Benjamin Cumming authored
* Set VERSION to 0.5.1-dev
-
Brent Huisman authored
* Add link to Zenodo entry for version 0.5 release.
-
- Jan 07, 2021
-
-
Benjamin Cumming authored
-
- Jan 06, 2021
-
-
Nora Abi Akar authored
-
Brent Huisman authored
Numpy is now explicitly required for use in the Python probes interface.
-
Nora Abi Akar authored
Fix some broken hyperlinks in the rst documentation.
-
Sebastian Schmitt authored
* Add the ability to use json and pybind11 libraries installed on the system instead of the vesrsions of those libraries bundled as submodules in the Arbor repository * Turned on by default * Toggled using the new `ARB_USE_BUNDLED_LIBS` CMake flag * Update documentation for installation * Update CI and pip workflows to opt in to the bundled libraries
-
- Jan 05, 2021
-
-
Brent Huisman authored
-
Brent Huisman authored
-
Sam Yates authored
* Add unit test that checks the expected contribution of an annulus to the embed_pwlin integrated area, when a zero-length segment with differing radii exists in the segment tree.
-
Benjamin Cumming authored
Revert a change introduced in #1282 that required the python module for arbor to build the documentation. This breaks the readthedocs build, where arbor is not available. * Remove arbor dependence from `doc/conf.py`, reverting to the original "out of core" approach * Fix other recently introduced issues that lead to CMake errors when configuring the documentation when the Python target is not configured. * The CMake variable `PYTHON_EXECUTABLE` wasn't set, but was required to make calls to the Python interpreter. * Instead of relying on pybind11 to find Python, explicitly detect it using `find_package(Python3 ...)` * Make Python3 a hard requirement when building the Python wrapper * And a soft requirement otherwise, that will fail only when the docs are built.
-
- Jan 04, 2021
-
-
Brent Huisman authored
Update the PR licensing rules in the PR contribution guide.
-
Brent Huisman authored
Fix CMAKE to use PYTHON_EXECUTABLE that corresponds to the version of Python used to build the python module.
-
- Dec 18, 2020
-
-
Nora Abi Akar authored
* Add 2 new examples to `python/examples` and their corresponding tutorials in the docs. 1. `single_cell_detailed.py` : a slightly more complex example using `single_cell_model` 2. `single_cell_detailed_recipe.py`: equivalent to `single_cell_detailed.py` but using a recipe. * Change `load_swc`-> `load_swc_arbor` for consistency. * Run Sphinx with specified PYTHON_EXECUTABLE. * Set PYTHONPATH env var in doc/CMakeLists.txt, such that it propagates correctly, including locally. * Build pyarb BEFORE html such that docs build can import arbor in Github Actions script.
-
Nora Abi Akar authored
Add API for `single_cell_model` and `label_dict`
-
Nora Abi Akar authored
* `concepts/cable_cell`: number subcategories to better illustrate document structure. * `concepts/labels`: concretize -> thingify; more on label dictionaries. * `concepts/mechanisms`: Some info on modcc, link to nmodl files in repo. * `concepts/morphology`: NeuroML section and some notes on branches/segments
-
thorstenhater authored
* Expose and document the (segment id) region expressions. * gen-labels.py was not up to speed with decor #1235. * The SWC example is read from disk and inserted into the docs verbatim. * The same file is used to generate the image. * The missing decor constructor has been added. * Generating inputs.py on the fly when building docs. That should prevent this issue from coming up again.
-
- Dec 17, 2020
-
-
Brent Huisman authored
* Docs: emphasised the option of having pip install a local copy of the Arbor source. * CMake: default Python library install path to `${PYTHON_EXECUTABLE} -c "import sysconfig; print(sysconfig.get_path('platlib'))"`. Fixes #1100. * CMake: remove ARB_PYTHON_PREFIX option, added ARB_PYTHON_LIB_PATH option. We cannot know in general where in the prefix the packages are expected by Python.
-
- Dec 16, 2020
-
-
Nora Abi Akar authored
-
- Dec 15, 2020
-
-
Nora Abi Akar authored
-
Nora Abi Akar authored
Python tests were failing because pyarb was not built
-
thorstenhater authored
First step of replacing Travis with GithubActions Here, only a basic set of tests has been added - Build arbor with MPI and Python - Compile examples - Run unit tests, incl distributed. - Run python tests, incl distributed. - Run python examples. - Build documentation.
-
Sam Yates authored
Wrap place_pwlin interface to allow querying rich geometry information from cell morphologies. * Add Python bindings for the `place_pwlin` and `isometry` classes. * Add equality test for Python `mpoint`. * Add unit tests for new Python interfaces. * Split C++ API morphology documentation into its own file. * Add C++ API and Python API documentation for `place_pwlin` and `isometry`.
-