Skip to content

Commit

Permalink
examples/llil4map.cc: remove explicit limit to 32 threads for sort.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg7mdp committed Apr 5, 2024
1 parent 5f26979 commit 1036816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/llil4map.cc
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ int main(int argc, char* argv[])
std::sort(propvec.begin(), propvec.end(), reverse_order);
#else
// Parallel sort
boost::sort::block_indirect_sort(propvec.begin(), propvec.end(), reverse_order, std::min(nthds, 32));
boost::sort::block_indirect_sort(propvec.begin(), propvec.end(), reverse_order, nthds);
#endif

cend3s = high_resolution_clock::now();
Expand Down

0 comments on commit 1036816

Please sign in to comment.