Luc Grosheintz
Luc Grosheintz
Thanks for the easy to read tutorial. Chapter 7 gives an example of a 'splat': function shout_mi(foods...) If I compare this to the Julia FAQ [1], I'm not quite sure...
The CLang AddressSanitizer will report a `stack-use-after-scope` when inserting elements into an `bgi::rtree` when computing the bounding box on the fly, e.g., ``` namespace demo { using Point3D = bg::model::point;...
Thank you for this useful toolbox and its nice packaging, e.g. in spack. I'm unable to build `v2.7.0` on my machine (GCC 11.2.0, CMake 3.23.0), while `master` works flawlessly. I'm...
IIUC during the release of 8.2.4 we found defects, after passing CI. The problem seemed to be that during CI we always install `setuptools` because we need it to build...
The following functions have been deprecated: https://github.com/neuronsimulator/nrn/blob/d7750508d713877bd55e25186fa3b56df615ae16/src/nrnoc/nrniv_mf.h#L30-L34 https://github.com/neuronsimulator/nrn/blob/d7750508d713877bd55e25186fa3b56df615ae16/src/nrnoc/nrniv_mf.h#L36-L40 can they be removed in NRN 9.0?
This issue is to track and discuss about using the `soa` datastructure for "dparams".
The following MOD file ``` NEURON { SUFFIX leonhard } STATE { y } INITIAL { y = 42.0 } BREAKPOINT { SOLVE dX METHOD cnexp } DERIVATIVE dX {...
This commit adds an example (by means of unit-tests) that demonstrates the behaviour we see #2458. It involves understanding how raw pointers and pointers to values inside a `soa` are...
Currently, we're unconditionally allocating one Jacobian for each instance of a mechanism. On CPUs we only need one per mechanism. Which is also what NRN does. This PR is a...
Running LSAN found revealed that CoreNEURON doesn't deallocate memory allocated for `NewtonSpace`. It's likely that it's failing to call `thread_mem_cleanup`. The full reproducer which contains detailed instructions and the LSAN...