Skip to content
Snippets Groups Projects
  1. Jun 22, 2020
    • Sam Yates's avatar
      Add place_pwlin for morphology geometry queries. (#1062) · 58c4abef
      Sam Yates authored
      * Add new `isometry` class representing a direct Euclidean isometry comprising a rotation and translation. Translations are always taken with respect to absolute coordinates, but rotations are composed with respect to intrinsic coordinates.
      * Add new `place_pwlin` class, that takes a morphology and an isometry, and answers location queries: where in space does a particular `mlocation` lie?
      * Split out (some of) the common code between `place_pwlin` and `embed_pwlin`.
      * Add equality operator to `mpoint`.
      
      This functionality is added to aid the presentation of the local field potential example.
      58c4abef
  2. Jun 16, 2020
  3. Jun 12, 2020
    • Sam Yates's avatar
      New recipe probe API (#1054) · 8d866593
      Sam Yates authored
      * Make recipe return probes as a vector.
      * Remove `probe_id` from `probe_info`.
      * Rename `fvm_probe_info` to `fvm_probe_data` (everything was being called info, and it was getting confusing).
      * Make `probe_association_map` specific to `mc_cell_group`/`fvm_lowered_cell`.
      * Change probe_association_map representation: unordered map for probe_id -> tag; unordered multimap for probe_id -> fvm_probe_data. This allows multiple probes to be associated with the same probe id.
      * Call sampler callback separately for each probe with the same probe_id.
      * Replace location-based probes with locset equivalents.
      * Add index for probes sharing a probe id.
      * Bundle all probe metadata (id, tag, index, probe-specific meta) into `probe_metadata` struct for passing to sampler callbacks.
      * Change simple_sampler to work on `trace_vector`, a vector of `trace_data`. The _i_th element is the data from probe with index i.
      * Consolidate hash composition and `std::hash` specialization code in new header.
      * Update python lib for new API.
      * Update tests and examples for new recipe, internal probe, and simple_sampler APIs.
      * Update docs to suit.
      8d866593
  4. Jun 04, 2020
  5. May 28, 2020
    • thorstenhater's avatar
      Parser improvements for modcc (#1050) · b6bd831b
      thorstenhater authored
      * Add ranges in STATE blocks of the form FROM ... TO ...
      * Unit test for the above
      * Add type check for <..., ...> ranges
      * Add units in procedure argument lists
      * Unit test for the above.
      b6bd831b
  6. May 26, 2020
    • Sam Yates's avatar
      Implement exact sampling for cable cells. (#1046) · d8893d9b
      Sam Yates authored
      Fixes #1037. 
      
      * Add fake unmatchable spike events to event queue for each exact sample request, so that integration boundaries align with exact sample times.
      * Update probe-demo for exact sampling.
      * Add copy assignment for `cable_cell`.
      * Extend max args for ARB_PP_FOREACH to 20.
      * Add unit test for ARB_PP_FOREACH.
      * Use ARB_PP_FOREACH to instantiate backend-specific probe unit tests. This also fixes the GPU probe tests that were using multicore backend.
      * Add unit test that exercises exact sampling requests combined with regular events in a gap junction context.
      d8893d9b
    • Harmen Stoppels's avatar
      Add codecov reports as part of CI (#1020) · 68133f73
      Harmen Stoppels authored
      This is a bit experimental. It builds arbor with `-fprofile-arcs -ftest-coverage` and creates a docker image with just the project binaries, lcov, gcov and generated `.gcno` files. This should still be reasonably small since there are no object files etc. When run on daint, `.gcna` files are produced (should be thread / process safe according to gcc's manual) inside of the container, and `lcov` is used to combine all those things into a single file with a random name in the mounted git project folder (hopefully this solves clashes with multiple nodes). After all tests are run, the combined reports are uploaded to codecov.io.
      68133f73
  7. May 22, 2020
    • Sam Yates's avatar
      Extend cable cell probe variety. (#1034) · b2e5d1f0
      Sam Yates authored
      Fixes #589 and #730, providing cell-wide probes and a correct total trans-membrane current.
      Fixes #822, providing spatial interpolation of membrane voltages as governed by cable resistivity and diameter.
      
      * Add partition of point mechanism target vector by cell index to `fvm_mechanism_config`.
      * Fix sign error in axial current interpolation.
      * Replace `fvm_probe_info` with class that wraps a variant type capturing one of a set of backend-cellgroup probe translation representations: `fvm_probe_scalar`, `fvm_probe_interpolated`, `fvm_probe_multi`, `fvm_probe_weighted_multi`, `fvm_probe_membrance_currents`.
      * Refactor `fvm_lowered_cell_impl::resolve_probe_address` so that it avoids the long chain of if-else tests on wrapped `any` type with an invocation of `util::any_visitor`. Each specific cable cell probe address representation is translated into one of the intermediate `fvm_probe_info` variants via an overload of `resolve_probe`.
      * Add new non-scalar cell probe address types for all-of-cell values, including point mechanism state, density mechanism state, ion currents and concentrations, membrane voltage by CV cable, and total trans-mebrane currents. The latter are ultimately calculated by computing the net axial current fluxes in each CV.
      * Add `util::any_ptr` field to the sampling function interface, pointing to constant-per-simulation-run metadata associated with a probe address. Underlying metadata type varies between probe types.
      * Extend `simple_sampler` so that it optionally captures sampler metadata.
      * Add special case to `simple_sampler` for vector-valued sample data, allowing it to translate from a pointer-pair range to a std::vector.
      * Fix minor bugs in `util::variant`.
      * Add to `mc_cell_group` the logic for translating each intermediate probe representation to a sampler callback invocation, reusing temporary scratch vectors across calls.
      * Add unit comments to `embed_pwlin_data`.
      * Add probe variety demonstration `probe-demo` to examples, covering most of the new cable cell probe classes.
      * Add `util::any_visitor` runtime-type dependent dispatcher class.
      * Add `util::overload` helper for generating overloaded functional objects from individual functions, lambdas or functionals.
      * Extend probe unit tests in `test_probe.cpp` to cover new probe address types.
      * Add unit tests for `any_visitor` and `overload`.
      b2e5d1f0
    • Nora Abi Akar's avatar
      Travis CI arch bug fix (#1045) · 9b772f07
      Nora Abi Akar authored
      Travis CI is failing on some simd tests for `ARB_ARCH=native`
      GCC appears to be setting incorrect flags in the Travis environment for `-march=native`. Using `-march=skylake-avx512/haswell/etc` fixes the errors. 
      9b772f07
  8. May 20, 2020
  9. May 15, 2020
  10. May 12, 2020
    • Benjamin Cumming's avatar
      restrict locset (#1033) · 7e9d9bd0
      Benjamin Cumming authored
      Add a `restrict` locset expression type that returns all locations in a locset that are in a specified region.
      
      Also allow region and locset names with hyphens.
      
      Fixes #1031 
      Fixes #1032 
      7e9d9bd0
    • thorstenhater's avatar
      Gpu/fuse set dt (#1025) · 5f9f2a5a
      thorstenhater authored
      Fuse kernels `gather` and `vec_minus` into a single kernel `set_dt_impl` for a small
      performance improvement.
      
      Here is the effect on the busyring benchmark (swapped pas -> hh) with 8192 cells on a 
      V100 GPU (time for `model-run` in seconds).
      
      ```
      |----------+-------|
      | Baseline | After |
      |----------+-------|
      |    2.318 | 2.314 |
      |    2.335 | 2.307 |
      |    2.345 | 2.315 |
      |    2.333 | 2.306 |
      |    2.331 | 2.320 |
      |----------+-------|
      |    2.318 | 2.306 |
      |----------+-------|
      ```
      5f9f2a5a
  11. May 06, 2020
  12. May 01, 2020
    • Benjamin Cumming's avatar
      clean up of region/locset implementation (#1023) · 96aae9e1
      Benjamin Cumming authored
      Add `maxset` function that returns the most distal set of locations in a location list, similar to existing `minset` function.
      
      Use `minset` and `maxset` consistently in `most_proximal` and `most_distal` locset expressions respectively.
      96aae9e1
  13. Apr 21, 2020
  14. Apr 20, 2020
  15. Apr 15, 2020
    • Sam Yates's avatar
      Voltage interpolation from CV discretization. (#1016) · 70fe8b50
      Sam Yates authored
      * Add functions for determining CVs and weights for membrane voltage interpolation and axial current determination.
      * Add unit tests for voltage interpolation and axial current interpolation.
      * Accommodate mextent changes.
      70fe8b50
    • Nora Abi Akar's avatar
      Compile arbor for AMD and Nvidia GPUs using clang (#1007) · 90a1e6d7
      Nora Abi Akar authored
      - Add option to compile Arbor for HIP/CUDA backend using Clang. 
      - Add new CMake option `ARB_GPU_COMPILE_TYPE` to distinguish between three possible gpu platforms/builds: `cuda-nvcc`; `cuda-clang`; `hip-clang`
      - Add gpu wrapper functions in `arbor/backends/gpu/gpu_api.hpp` and `arborenv/gpu_api.hpp` which call HIP/CUDA functions depending on the platform
      - Rename functions and files: cuda -> gpu
      - Add downgraded warp primitives for HIP
      - Implement `uuid` workaround for HIP
      - Set correct alignment and warp size for AMD gpus
      - Update installation guide and docs.
      - Update pip/setuptools to support new gpu targets
      
      Fixes #833
      90a1e6d7
    • Benjamin Cumming's avatar
      Fix ODR in GPU unit tests and memory bugs. (#1015) · ff06934f
      Benjamin Cumming authored
      * Remove interleaved matrix solver on GPU.
      * Fix out of bound memory bug when initialising matrix for all back ends
      * fix singed-vs-unsigned comparison warning 
      
      Fixes #1014 
      Fixes #1013
      ff06934f
  16. Apr 14, 2020
    • Benjamin Cumming's avatar
      fix names of gpu probe tests (#1012) · e71d6026
      Benjamin Cumming authored
      Fix build errors for the GPU tests introduced in #1011.
      e71d6026
    • Harmen Stoppels's avatar
      CI on Daint via Sarus (#1006) · d60e2937
      Harmen Stoppels authored
      * Add Dockerfiles for MPI + CUDA test builds on Daint
      * Add bors.toml for CI on Daint
      * Add the separate ci repo as submodule for convenience
      * Add a CI badge for master to the top of the readme
      d60e2937
    • Sam Yates's avatar
      Extend repertoire of cable cell probes. (#1011) · 13e00470
      Sam Yates authored
      * Extend repertoire of cable cell probes.
      * Add the following scalar (i.e. corresponding to just one raw value)
      probe address types for cable cells:
         - `cell_probe_membrane_voltage`, replacing `cell_probe_address::membrane_voltage`;
         - `cell_probe_total_ionic_current_density`, replaing `cell_probe_address::membrane_current`;
         - `cell_probe_density_state`;
         - `cell_probe_point_state`;
         - `cell_probe_ion_current_density`;
         - `cell_prone_ion_int_concentration`;
         - `cell_prone_ion_ext_concentration`.
      * Extend backend class interface with `mechanism_field_data` method, that returns a raw (device) pointer to the per-instance values of a mechanism state variable.
      * Make unit test for probes backend-generic.
      * Add unit tests for new probes.
      * Modify `fixed_ica_current.mod` unit test NMODL module to be more generic in naming, so it can be better used in probe unit tests.
      * Update examples for new cable cell probes.
      * Update Python interface for new probe types
      13e00470
  17. Apr 09, 2020
    • Benjamin Cumming's avatar
      Fix setuptools to work with older Pip (#1010) · 1338599a
      Benjamin Cumming authored
      Work around issue caused by some versions of pip skipping the `install` stage when no additional command line args are passed via `--install-option`.
      
      Keep settings that can be modified via install option in a singleton that initializes them to their default.
      1338599a
    • Sam Yates's avatar
      Fix bad param values in partial CV coverage. (#1009) · 4394aade
      Sam Yates authored
      * Replace code that determines density mechanism parameter values across a CV with code that (hopefully) does it correctly. New code has the advantage also of being a bit simpler.
      * Add unit test `fvm_layout.density_norm_area_partial` that catches the bug, and which validates the fix.
      * Change old 'segment' terminology in `fvm_layout` test comments to 'branch'.
      
      Fixes #1008.
      4394aade
    • Benjamin Cumming's avatar
      Extents don't include the cover of fork points by default. (#998) · 21c400b2
      Benjamin Cumming authored
      This PR removes the requirement that all cover points are included in a region.
      The motivation is to allow more flexible definion of regions, particularly the proximal and distal sets thereof.
      The other motivation is that the author finds it much simpler to reason about, however others find the existing approach easier to reason about.
      
      The changes:
       * `mextent` does not always include points on the cover at fork points.
         * it still enforces that its constituent cables have no intersections and are ordered.
       * a `super` region expression adds the cover points to a region.
       * update `most_proximal` to return the `minset` of the proximal points in a region's cables.
       * fix some cut and paste errors in comments and printing of locset expressions.
      21c400b2
  18. Apr 07, 2020
  19. Apr 06, 2020
    • Benjamin Cumming's avatar
      Finalize support for PyPi package (#1002) · 04705503
      Benjamin Cumming authored
      * add MANIFEST file that describes all paths required in source distribution so that pip can compile Arbor.
      * fixes to `setup.py` to help it work across supported Python versions.
      
      Tested with:
      * setup tools and pip
      * python 3.7 and 3.8
      * pip 19 and pip 20
      * Linux and OS X
      04705503
  20. Apr 03, 2020
    • Benjamin Cumming's avatar
      prepare for PyPi upload (#1001) · 86de86b5
      Benjamin Cumming authored
      Some small changes to facilitate smooth PyPi integration:
      * update the Python installation guide
      * update the license file
      * add a `setup.cfg`
      * add a stub for the Python readme
      86de86b5
  21. Apr 02, 2020
    • thorstenhater's avatar
      Move q10 calculation to initialisation. (#999) · f5567d2a
      thorstenhater authored
      Pull out a constant computation from the update function to the initialisation step in the HH mechanism. In the busyring benchmark with hh/pas swapped this results in an overall speed-up
      of roughly 20%.
      f5567d2a
    • Sam Yates's avatar
      New cable representation for CVs. (#994) · f5c977ad
      Sam Yates authored
      * Replace CV cable representation with one which makes it clear to which CV a fork point 'belongs': every fork point belongs to exactly one CV; if a CV representation has cables on two different branches at a fork point, it must have cables on all branches at that fork point, and the fork point is associated with that CV.
      * Rework (and simplify) `cv_geometry_from_ends` to suit new representation.
      * Add CV child information to `cv_geometry`.
      * Add computed pw-constant axial resistivity over cell branches to `fvm_cv_discretization`, so it is available for voltage/current interpolation.
      * Extend `location_cv` method: add a new parameter of enum `cv_prefer::type` which instructs `location_cv` on how to resolve locations on CV boundaries.
      * Provide pw-constant over cable integration methods for `embed_pwlin`.
      * Split out `unique_in_place` to its own header, with unit tests.
      * Unit tests to suit.
      f5c977ad
    • Hannes Vogt's avatar
      Add Gitpod setup (#996) · 4286a713
      Hannes Vogt authored
      A support for Gitpod.io, a free automated
      dev environment that makes contributing and generally working on GitHub
      projects much easier. It allows anyone to start a ready-to-code dev
      environment for any branch, issue and pull request with a single click.
      4286a713