Skip to content
Snippets Groups Projects
  1. Aug 27, 2024
  2. Aug 23, 2024
  3. Aug 15, 2024
    • Thorsten Hater's avatar
      ASCII art for segment tree (#2224) · 2c08a566
      Thorsten Hater authored
      Allow ASCII rendering of segment trees and morphologies for debugging
      Example `segment_tree`
      ```
                            |              |                +-[-- id=1161 --]-+-[-- id=1709 --]---[-- id=2234 --]-+-[-- id=2625 --]---[-- id=3172 --]
                            |              |                |                 |                                   +-[-- id=2928 --]---[-- id=3765 --]
                            |              |                |                 |
                            |              |                |                 +-[-- id=1721 --]---[-- id=3504 --]---[-- id=3846 --]
                            |              |                |
                            |              |                +-[-- id=1867 --]
                            |              |
                            |              +-[-- id=1451 --]-+-[-- id=2356 --]
                            |                                +-[-- id=2471 --]---[-- id=2670 --]---[-- id=4031 --]
                            |
                   ...
      2c08a566
    • Han Lu's avatar
      added E_R to lif cell model (#2383) · 1050ff45
      Han Lu authored
      added a missing construction argument E_R to LIF cell in python
      1050ff45
    • Thorsten Hater's avatar
      Auto-generate type stubs (#2384) · 8ac0dc72
      Thorsten Hater authored
      So far, we have manually generated stubs by installing
      `pybind11-stubgen`, using it, and finally copying over the result
      into `python/stubs`. This is tedious and tends to get forgotten, thus
      stubs are outdated, and clashes with `black`
      constantly.
      
      Thus, we
      - remove the static stub directory
      - generate stubs directly during build time
      - enable users to opt out
      
      PS: There are some fixes to warnings thrown during the stub
      construction, too.
      8ac0dc72
  4. Aug 13, 2024
  5. Aug 09, 2024
    • Thorsten Hater's avatar
      Release v0.10.0 (#2380) · 6b6cc900
      Thorsten Hater authored
      # v0.10.0 (*08.08.2024*)
      
      ## Major Changes since v0.9.0
      * Automatic network generation from high-level specifications.
      * Units at the user interface including scaling and conversion.
      * Morphologies are loaded through a unified interface; which produces a bundle of morphology, metadata, and segment tree.
      
      ## Internal Updates
      
      * Documentation overhaul
      * Python bindings offer type stubs; giving auto-completion and inline documentation in some editors/IDEs.
      * Performance improvements
        - Label resolution uses hashes instead of strings, saving memory, network traffic, and time.
        - Spike delivery is up to 30% faster leading to 10% end-to-end improvements in some cases (e.g. `example/brunel`) 
        - Load balancing is faster and doesn't rely on MPI, leading to shorter setup times for large networks.
      * Fixes
        - Better support for source builds on MacOS (aarch64)
        - `modcc` no longer allows internal variables (`v`, `celsius`, ...) as `ASSIGNED`
        - Better support for raw (...
      2 tags
      6b6cc900
  6. Aug 08, 2024
  7. Aug 07, 2024
  8. Aug 05, 2024
  9. Aug 01, 2024
  10. Jul 31, 2024