CoreNeuron icon indicating copy to clipboard operation
CoreNeuron copied to clipboard

Simulator optimized for large scale neural network simulations.

Results 91 CoreNeuron issues
Sort by recently updated
recently updated
newest added

Hello, I was wondering whether it might be possible to utilize ParallelContext.step_time and related functions to measure the execution time of CoreNeuron in direct memory mode. This is not a...

enhancement
UI

CoreNEURON is very efficient in network simulation and I found some test results on the ring network. Is there any published realistic network models on CoreNEURON? Thank you so much.

Recently we have updated NEURON-CoreNEURON usage workflow in #374 (see [README](https://github.com/BlueBrain/CoreNeuron#installation)). The [NMC portal](https://bbp.epfl.ch/nmc-portal/microcircuit) provides various cell models. As part of this ticket, we should document instructions to run these...

documentation
improvement

Currently we have minimal test (ringtest) for direct memory mode. We should enable one of the BBP circuit with direct memory mode transfer.

tests

The mod2c translation follows nocmodl and needs to be updated. CoreNEURON not setting up the information needed for even an updated mod2c translation to to properly deal with the use...

Currently CoreNEURON build options are very strict when it comes to various backends. We should have one build to allow following: * cpu as well as gpu support * mod2c...

feature

While making models compatible to CoreNEURON, one of the first thing that needs to be fixed is POINTER variables and use of random number streams. I wonder if there are...

question

Based on BBP's [internal JIRA ticket](https://bbpteam.epfl.ch/project/issues/browse/HPCTM-1370): min delay is calculated as: ``` mindelay_ -= dt; if ((mindelay_ < 1e-9) || (mindelay_ < dt)) { hoc_execerror("usable mindelay is 0", "(or less...

enhancement

I think we are currently we running pure MPI tests under CI. We should run MPI+OpenMP tests to catch any threading errors.

There are circumstances where is is more convenient to have a format consistent with an exact binary dt fraction. e.g ``` >>> 1./64 + 1./128 0.0234375 ``` would be best...

beginner