Cycles: CUDA implementation of split kernel

This commit is contained in:
2017-02-14 05:50:29 -05:00
parent 0892352bfe
commit 817873cc83
13 changed files with 599 additions and 134 deletions

View File

@@ -60,7 +60,8 @@ void DebugFlags::CPU::reset()
}
DebugFlags::CUDA::CUDA()
: adaptive_compile(false)
: adaptive_compile(false),
split_kernel(false)
{
reset();
}
@@ -69,6 +70,8 @@ void DebugFlags::CUDA::reset()
{
if(getenv("CYCLES_CUDA_ADAPTIVE_COMPILE") != NULL)
adaptive_compile = true;
split_kernel = false;
}
DebugFlags::OpenCL::OpenCL()