examples/llil4map.cc: remove explicit limit to 32 threads for sort.

This commit is contained in:
greg7mdp
2024-04-05 09:13:48 -04:00
parent 5f26979baa
commit 10368163ab
+1 -1
View File
@@ -479,7 +479,7 @@ int main(int argc, char* argv[])
std::sort(propvec.begin(), propvec.end(), reverse_order); std::sort(propvec.begin(), propvec.end(), reverse_order);
#else #else
// Parallel sort // 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 #endif
cend3s = high_resolution_clock::now(); cend3s = high_resolution_clock::now();