Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/cycles/util/util_task.cpp')
-rw-r--r--intern/cycles/util/util_task.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/util/util_task.cpp b/intern/cycles/util/util_task.cpp
index abcb05561bd..07960805f77 100644
--- a/intern/cycles/util/util_task.cpp
+++ b/intern/cycles/util/util_task.cpp
@@ -186,12 +186,12 @@ void TaskScheduler::init(int num_threads)
do_exit = false;
if(num_threads == 0) {
- /* automatic number of threads will be main thread + num cores */
+ /* automatic number of threads */
num_threads = system_cpu_thread_count();
}
else {
- /* main thread will also work, for fixed threads we count it too */
- num_threads -= 1;
+ /* manual number of threads */
+ num_threads;
}
/* launch threads that will be waiting for work */