Skip to content

Commit

Permalink
fix slowdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanting Zhang committed Feb 9, 2024
1 parent c985f76 commit c3541ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msm/pippenger.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ class msm_t {

wbits = 17;
if (nscalars > 192) {
wbits = std::min(lg_n, (uint32_t)18);
wbits = std::min(lg_n - 8, (uint32_t)18);
if (wbits < 10)
wbits = 10;
} else if (nscalars > 0) {
Expand Down

0 comments on commit c3541ae

Please sign in to comment.