Skip to content

Commit

Permalink
fix(fm): called seq instead of par function
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSeemaier committed Sep 30, 2024
1 parent be3d6f3 commit fc1c93f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kaminpar-shm/refinement/gains/compact_hashing_gain_cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class CompactHashingGainCache {
}

START_TIMER("Compute gain cache offsets");
const std::size_t total_nbytes = parallel::aligned_prefix_sum_seq(
const std::size_t total_nbytes = parallel::aligned_prefix_sum(
_offsets.begin(),
_offsets.begin() + _n,
[&](const NodeID u) {
Expand Down

0 comments on commit fc1c93f

Please sign in to comment.