Skip to content

Commit

Permalink
[#892] explicitly use MSTATIC in LoadPartitioning
Browse files Browse the repository at this point in the history
This patch adds MSTATIC to the switch case in the LoadPartitioning.
Before, this was implicitly handled by the default case.

Closes #892
  • Loading branch information
philipportner committed Nov 1, 2024
1 parent 7a24ee7 commit ef93617
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/runtime/local/vectorized/LoadPartitioning.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ class LoadPartitioning {
chunkSize = mfscChunk;
break;
}
case SelfSchedulingScheme::MSTATIC:
default: {
chunkSize = (uint64_t)ceil(totalTasks / totalWorkers / 4.0);
break;
Expand Down

0 comments on commit ef93617

Please sign in to comment.