Skip to content
Snippets Groups Projects
  1. Nov 15, 2022
    • Brent Huisman's avatar
    • Brent Huisman's avatar
      v0.8 (#2028) · 8e82ec19
      Brent Huisman authored
      - 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. https://github.com/arbor-sim/arbor/pull/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
      v0.8
      8e82ec19
    • boeschf's avatar
      SDE examples (#2030) · 1b268ecf
      boeschf authored
      Addresses #1987
      
      * reproducibility test for random number generator
      * C++ example demonstrating Ornstein-Uhlenbeck process
      * Python example featuring stochastic mechanism
      * stochastic mechanism catalogue
      
      The Python example is contributed by Jannik Luboeinski's (@jlubo): https://github.com/jlubo/arbor_ou_lif_example
      and adapted to fit into Arbor.
      1b268ecf
  2. Nov 03, 2022
  3. Nov 02, 2022
  4. Nov 01, 2022
    • Thorsten Hater's avatar
      Make LIF cells probeable. (#2021) · 3106ff78
      Thorsten Hater authored
      * Functionality
        * Add probes to LIF cells.
      * Docs
        * Remove errorneous statement(s) about LIF cells (there never was an E_reset...)
        * Move probing chapter one level up (concepts/cable_cells -> concepts)
      * Tests
        * Add tests for LIF probes
      3106ff78
  5. Oct 26, 2022
  6. Oct 25, 2022
    • lukasgd's avatar
      Arbor cable cell exporter and backend support in BluePyOpt (#1959) · da8450ec
      lukasgd authored
      * Support for exporting models with parameters optimized in BluePyOpt to a mixed JSON/ACC-format that can be loaded in Arbor (with faithful axon-replacement modelling)
      * A tutorial and examples on how to run simulations with such models including a neocortical layer-5 pyramidal cell exported from BluePyOpt
      * Support for using Arbor as a backend for single cell optimization in BluePyOpt
      da8450ec
    • boeschf's avatar
      cleanup documentation (#2007) · 49884318
      boeschf authored
      49884318
    • Thorsten Hater's avatar
      Bump versions (#2017) · c9204f5b
      Thorsten Hater authored
      - GCC: goes up to 9 from 8, needed by CUDA 11
      - CUDA: goes up to 11 from 10
      - Clang: 10 up from 8
      
      Closes #1815 
      c9204f5b
  7. Oct 20, 2022
  8. Oct 19, 2022
  9. Oct 13, 2022
  10. Oct 11, 2022
  11. Oct 05, 2022
    • boeschf's avatar
      SDE (#1884) · c976c666
      boeschf authored
      Main changes
      - uncorrelated and independently distributed white noise generation for point and density mechanisms
      - enabled by extending nmodl dialect and adjusting modcc (WHITE_NOISE block, stochastic solver method)
      - SDEs are solved by Euler-Maruyama method (synapse collapsing disabled in this case)
      - CPU and GPU backends responsible for creating random numbers using random123
      - simulation takes a seed value
      - bumped ABI due to addition of random numbers in ppack
      Incidental changes
      - builder pattern for simulation
      - pimpl idiom supported by util classes
      c976c666
  12. Sep 20, 2022
    • Thorsten Hater's avatar
      Ensure proper Pybind11 is found. (#1961) · 8b388e6b
      Thorsten Hater authored
      * Add pybind11 version to config.
      * Add version check for PB11.
      * Bump CMake a tiny bit.
      8b388e6b
    • Thorsten Hater's avatar
      1ad8e497
    • Thorsten Hater's avatar
      generate-catalogue is gone (#1975) · 04762cf2
      Thorsten Hater authored
      This is prep for meson in addition to simplifying (ie reducing) the amount of scripting
      we have. In the long run, I'd like to remove `BuildModules.cmake` too, but this might
      be superseded by meson and this PR is self-contained.
      
      # Changes
      - `modcc` accepts now a list of NMODL files
      - likewise, `modcc` is now able to spit out a catalogue.cpp file
      - remove the `generate-catalogue` script, simplify a-b-c
      - remove some options from `modcc` we never use
      - No longer allow external modcc
      04762cf2
  13. Sep 16, 2022
    • Thorsten Hater's avatar
      :snake: Rename spike detector -> threshold detector (#1976) · d0b31a6f
      Thorsten Hater authored
      - BREAKING: Rename spike detector -> threshold detector in Python
      - `spike_detector` is still around, will throw a deprecation error; will be removed 0.9
      - this brings Python closer to the C++ API and removes lots of ambiguities in the docs.
      d0b31a6f
  14. Sep 07, 2022
    • Thorsten Hater's avatar
      Allow editing morphologies (#1957) · 276fee90
      Thorsten Hater authored
      * Add segment tree editing: join and split
      * Add equivalence and equality on trees
      * Apply isometries to trees
      * Add raw loaders to NeuroLucida ASC and SWC that return segment trees instead of morphologies
      276fee90
  15. Sep 06, 2022
  16. Sep 05, 2022
    • Thorsten Hater's avatar
      Mutable connection table (#1919) · 07e0bb62
      Thorsten Hater authored
      Add functionality, docs, and examples on editing the connection table.  This is a first, small PR
      on the topic, further functionality will come as requested.
      
      Teaser example
      ```cxx
          // This recipe -- omitted -- implements a mutable connection table 
          // and returns it via the `connections_on` callback. New entries are
          // added using `add_connection` which makes one link from a central 
          // `spike_source_cell` to the given `gid`
          auto rec = recipe();
          rec.add_connection(1);
      
          auto sim = arb::simulation(rec, ctx);
      
          // Record spikes
          std::vector<arb::spike> spikes;
          sim.set_local_spike_callback([&spikes](const auto& s) { spikes.insert(spikes.end(), s.begin(), s.end()); });
      
          // Run and print all spikes per gid
          sim.run(0.25, 0.025);
          show_spikes(spikes);
      
          // Add a new connection
          rec.add_connection(2);
          sim.update_connections(rec);
      
          // Run and print all spikes per gid
          sim.run(0.5, 0.025);
          show_spikes(spikes);
      ```
      
      # Update July '22
      
      - added re-wiring of Event Generators
      - implemented a split between a recipe and a recipe-update (cheekily dubbed `topping` until further notice)
      - `recipes` are `toppings` via inheritance
      07e0bb62
    • Thorsten Hater's avatar
      :squid: Excise `time` (#1967) · 0644cf87
      Thorsten Hater authored
      **BREAKING** Remove access to time `t` in NMODL.
      0644cf87
  17. Sep 01, 2022
    • Thorsten Hater's avatar
      Add spike counts to pre-commit tests. (#1965) · ccb25fcd
      Thorsten Hater authored
      - Enhance `run_cpp_examples.sh` to do some very basic checking of spikes counts
      - Add a script to check all releases
      - The former must succeed for all commits to master
      
      Here's the expected spike counts as of 0.7
      - brunel 6998
      - bench 972
      - ring 94 (19 pre-v0.7)
      - gap_junctions 30
      ccb25fcd
  18. Aug 25, 2022
  19. Aug 23, 2022
    • Thorsten Hater's avatar
      Add more visibility to decor. (#1953) · 4505986d
      Thorsten Hater authored
      Functionality to
      - delete ions from global properties
      - peek into global properties
      - expose painted, placed, and defaulted items
      - expose voltage limit to python
      - make voltage limit an optional to allow for arbitrary values.
      - Add ion_settings view to python = (valence, ion_data, rev_pot_method)
      
      Documentation
      - cable cell properties in python
      
      Closes #1578 
      Closes #1577 
      Closes #1607 
      4505986d
  20. Aug 11, 2022
  21. Aug 10, 2022
    • Thorsten Hater's avatar
      Add portable stacktraces · de83a0fa
      Thorsten Hater authored
      - Add stacktraces to
         1. arbor_exception (and all derived) as `where`
         2. arbor_internal_error as `where`
         3. arb_assert
      - Propagate stacktraces to Python exceptions derived from the above.
      - Expand dev/doc on debugging
      de83a0fa
  22. Aug 09, 2022
  23. Aug 05, 2022
  24. Aug 04, 2022
  25. Aug 02, 2022
  26. Jul 28, 2022
  27. Jul 20, 2022
  28. Jul 19, 2022
  29. Jul 18, 2022
  30. Jul 04, 2022
    • Brent Huisman's avatar
      Move Python build to `pyproject.toml`, bump Python minver to 3.7, fix macos... · 8af6bd27
      Brent Huisman authored
      Move Python build to `pyproject.toml`, bump Python minver to 3.7, fix macos wheel generation (#1916)
      
      * Failing Macos Python wheel builds fixed.
      * Macos Python wheels now come with dual-arch (x86-64 and arm64)
      * Moved (nearly) all Python build instructions to `pyproject.toml`
        * Enables 'build isolation', and need to specify build-deps only once, no need for users or CI scripts to pre-install them.
        * Enables editable `pip` installs (`pip install -e ./arbor`)
        * Compatible with 'build frontends' `pip` and `build`.
        * Passing CMake options actually got shorter
      * Drop Python 3.6 support.
      8af6bd27
  31. Jun 30, 2022