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:
-rw-r--r--intern/cycles/device/device_cuda.cpp15
1 files changed, 1 insertions, 14 deletions
diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp
index d76ffb10786..6629069c6c6 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -25,7 +25,6 @@
#include "cuew.h"
#include "util_debug.h"
-#include "util_foreach.h"
#include "util_map.h"
#include "util_opengl.h"
#include "util_path.h"
@@ -967,10 +966,7 @@ public:
int get_split_task_count(DeviceTask& task)
{
- if (task.type == DeviceTask::SHADER)
- return task.get_subtask_count(TaskScheduler::num_threads(), 1024 * 1024);
- else
- return 1;
+ return 1;
}
void task_add(DeviceTask& task)
@@ -983,15 +979,6 @@ public:
cuda_assert(cuCtxSynchronize());
cuda_pop_context();
}
- else if(task.type == DeviceTask::SHADER) {
- /* split task into smaller ones */
- list<DeviceTask> tasks;
-
- task.split(tasks, TaskScheduler::num_threads(), 1024 * 1024);
-
- foreach(DeviceTask& task, tasks)
- task_pool.push(new CUDADeviceTask(this, task));
- }
else {
task_pool.push(new CUDADeviceTask(this, task));
}