Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions shared/mxdatagenerator/lib/include/DataGenerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ namespace DGen

uint m_seed = 1713573848;
std::vector<Generator> m_gen;
const int m_num_threads
= (std::thread::hardware_concurrency() > 32) ? 32 : std::thread::hardware_concurrency();
const int m_num_threads = std::min(32, omp_get_max_threads());

struct BufferDesc
{
Expand Down