-
Notifications
You must be signed in to change notification settings - Fork 244
Open
Description
Hi all
While doing some benchmarks for the OpenMP implementation, and trying to profile a bit the code, to see where are the main bottlenecks in the cpp standalone module, I came up with a maybe naive but obvious questions : why are we looping multiple times over cells, at every time steps, to first do the stateupdate, then to threshold, then to reset (actually, this loop is done only on spiking neurons, so this is faster) ? It will be more efficient to merge those threee operations in the same loop, no ? Are there any reasons for not doing that ? Will it reduce the flexibility of the code ?
Best
Pierre