Blender Git Loki
Git Commits -> Revision 6fc1669
Revision 6fc1669 by Sergey Sharybin (master) May 9, 2015, 14:22 (GMT) |
Cycles: Initial work towards selective nodes support compilation The goal is to be able to compile kernel with nodes which are actually needed to render current scene, hence improving performance of the kernel, The idea is: - Have few node groups, starting with a group which contains nodes are used really often, and then couple of groups which will be extension of this one. - Have feature-based nodes disabling, so it's possible to disable nodes related to features which are not used with the currently used nodes group. This commit only lays down needed routines for this approach, actual split will happen later after gathering statistics from bunch of production scenes. |
Commit Details:
Full Hash: 6fc166967989072bda085ae4cf54fc513f6f1daf
Parent Commit: 17c95d0
Lines Changed: +96, -1
9 Modified Paths:
/intern/cycles/kernel/kernel_compat_cpu.h (+8, -0) (Diff)
/intern/cycles/kernel/kernel_compat_cuda.h (+8, -0) (Diff)
/intern/cycles/kernel/kernel_compat_opencl.h (+10, -0) (Diff)
/intern/cycles/kernel/svm/svm.h (+12, -1) (Diff)
/intern/cycles/kernel/svm/svm_types.h (+17, -0) (Diff)
/intern/cycles/render/graph.h (+18, -0) (Diff)
/intern/cycles/render/nodes.h (+1, -0) (Diff)
/intern/cycles/render/shader.cpp (+19, -0) (Diff)
/intern/cycles/render/shader.h (+3, -0) (Diff)
/intern/cycles/kernel/kernel_compat_cuda.h (+8, -0) (Diff)
/intern/cycles/kernel/kernel_compat_opencl.h (+10, -0) (Diff)
/intern/cycles/kernel/svm/svm.h (+12, -1) (Diff)
/intern/cycles/kernel/svm/svm_types.h (+17, -0) (Diff)
/intern/cycles/render/graph.h (+18, -0) (Diff)
/intern/cycles/render/nodes.h (+1, -0) (Diff)
/intern/cycles/render/shader.cpp (+19, -0) (Diff)
/intern/cycles/render/shader.h (+3, -0) (Diff)