Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve spike event merging #2425

Prev Previous commit
Next Next commit
Eh?
thorstenhater committed Nov 21, 2024
commit 71a88902250b591121470c86c13e4ed1c36928f9
2 changes: 1 addition & 1 deletion arbor/backends/event_stream_base.hpp
Original file line number Diff line number Diff line change
@@ -130,7 +130,7 @@ struct spike_event_stream_base: event_stream_base<deliverable_event> {
// parallelise over streams
auto tg = threading::task_group(ts.get());
for (auto& [id, stream]: streams) {
tg.run([&stream]() {
tg.run([&stream=stream]() {
// scan over spike_counter_
util::make_partition(stream.ev_spans_, stream.spike_counter_);
// This is made slightly faster by using pdqsort, if we want to take it on.