Closed neworderofjamie closed 1 year ago
Patch coverage: 100.00
% and no project coverage change.
Comparison is base (
cf51800
) 88.79% compared to head (b78f2f6
) 88.80%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
When I fixed a race condition in the system for tracking neuron's previous spike time in #414, I added a new kernel which had an associated new array of indices used for the binary search amongst merged groups. Because of the memory access pattern of the binary search, these take first priority when the 64KB of constant cache is handed out. However, I forgot to take these indices into account, meaning that models with lots of neuron and synapse groups and learning rules using previous spike times could overrun the constant cache.
Fixes #588