This commit is contained in:
2025-03-03 16:49:44 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ public:
}
}
const int maxThreads = 4 * std::thread::hardware_concurrency();
const int maxThreads = std::thread::hardware_concurrency();
printf("total tasks count = %ld, active task count %ld, maxKernels %d, maxNeededKernels %d, maxThreads %d\n",
this->getLength(), activeTasks, maxKernels, maxNeededKernels, maxThreads);

View File

@@ -1 +1 @@
11
12