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:
authorJeroen Bakker <j.bakker@atmind.nl>2019-02-19 17:41:22 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2019-02-19 18:28:25 +0300
commite6f5632eb11b37a2398f80841a77674656243dcf (patch)
tree02f1b2459c9b0ce34680a0622f306d4f436028cd /intern/cycles/kernel/svm/svm_attribute.h
parent8138eb0dfefa3b6d05d197a9a701e964b8719328 (diff)
T61513: Refactored Cycles Attribute Retrieval
There is a generic function to retrieve float and float3 attributes `primitive_attribute_float` and primitive_attribute_float3`. Inside these functions an prioritised if-else construction checked where the attribute is stored and then retrieved from that location. Actually the calling function most of the time already knows where the data is stored. So we could simplify this by splitting these functions and remove the check logic. This patch splits the `primitive_attribute_float?` functions into `primitive_surface_attribute_float?` and `primitive_volume_attribute_float?`. What leads to less branching and more optimum kernels. The original function is still being used by OSL and `svm_node_attr`. This will reduce the compilation time and render time for kernels. Especially in production scenes there is a lot of benefit. Impact in compilation times job | scene_name | previous | new | percentage -------+-----------------+----------+-------+------------ t61513 | empty | 10.63 | 10.66 | 0% t61513 | bmw | 17.91 | 17.65 | 1% t61513 | fishycat | 19.57 | 17.68 | 10% t61513 | barbershop | 54.10 | 24.41 | 55% t61513 | classroom | 17.55 | 16.29 | 7% t61513 | koro | 18.92 | 18.05 | 5% t61513 | pavillion | 17.43 | 16.52 | 5% t61513 | splash279 | 16.48 | 14.91 | 10% t61513 | volume_emission | 36.22 | 21.60 | 40% Impact in render times job | scene_name | previous | new | percentage -------+-----------------+----------+--------+------------ 61513 | empty | 21.06 | 20.35 | 3% 61513 | bmw | 198.44 | 190.05 | 4% 61513 | fishycat | 394.20 | 401.25 | -2% 61513 | barbershop | 1188.16 | 912.39 | 23% 61513 | classroom | 341.08 | 340.38 | 0% 61513 | koro | 472.43 | 471.80 | 0% 61513 | pavillion | 905.77 | 899.80 | 1% 61513 | splash279 | 55.26 | 54.86 | 1% 61513 | volume_emission | 62.59 | 61.70 | 1% There is also a possitive impact when using CPU and CUDA, but they are small. I didn't split the hair logic from the surface logic due to: * Hair and surface use same attribute types. It was not clear if it could be splitted when looking at the code only. * Hair and surface are quick to compile and to read. So the benefit is quite small. Differential Revision: https://developer.blender.org/D4375
Diffstat (limited to 'intern/cycles/kernel/svm/svm_attribute.h')
-rw-r--r--intern/cycles/kernel/svm/svm_attribute.h66
1 files changed, 28 insertions, 38 deletions
diff --git a/intern/cycles/kernel/svm/svm_attribute.h b/intern/cycles/kernel/svm/svm_attribute.h
index d98f538d089..ef6f7d7cbb5 100644
--- a/intern/cycles/kernel/svm/svm_attribute.h
+++ b/intern/cycles/kernel/svm/svm_attribute.h
@@ -52,24 +52,22 @@ ccl_device void svm_node_attr(KernelGlobals *kg, ShaderData *sd, float *stack, u
AttributeDescriptor desc = svm_node_attr_init(kg, sd, node, &type, &out_offset);
/* fetch and store attribute */
- if(type == NODE_ATTR_FLOAT) {
- if(desc.type == NODE_ATTR_FLOAT) {
- float f = primitive_attribute_float(kg, sd, desc, NULL, NULL);
+ if (desc.type == NODE_ATTR_FLOAT) {
+ float f = primitive_attribute_float(kg, sd, desc, NULL, NULL);
+ if (type == NODE_ATTR_FLOAT) {
stack_store_float(stack, out_offset, f);
}
else {
- float3 f = primitive_attribute_float3(kg, sd, desc, NULL, NULL);
- stack_store_float(stack, out_offset, average(f));
+ stack_store_float3(stack, out_offset, make_float3(f, f, f));
}
}
else {
- if(desc.type == NODE_ATTR_FLOAT3) {
- float3 f = primitive_attribute_float3(kg, sd, desc, NULL, NULL);
- stack_store_float3(stack, out_offset, f);
+ float3 f = primitive_attribute_float3(kg, sd, desc, NULL, NULL);
+ if (type == NODE_ATTR_FLOAT) {
+ stack_store_float(stack, out_offset, average(f));
}
else {
- float f = primitive_attribute_float(kg, sd, desc, NULL, NULL);
- stack_store_float3(stack, out_offset, make_float3(f, f, f));
+ stack_store_float3(stack, out_offset, f);
}
}
}
@@ -86,28 +84,24 @@ void svm_node_attr_bump_dx(KernelGlobals *kg, ShaderData *sd, float *stack, uint
AttributeDescriptor desc = svm_node_attr_init(kg, sd, node, &type, &out_offset);
/* fetch and store attribute */
- if(type == NODE_ATTR_FLOAT) {
- if(desc.type == NODE_ATTR_FLOAT) {
- float dx;
- float f = primitive_attribute_float(kg, sd, desc, &dx, NULL);
+ if (desc.type == NODE_ATTR_FLOAT) {
+ float dx;
+ float f = primitive_surface_attribute_float(kg, sd, desc, &dx, NULL);
+ if (type == NODE_ATTR_FLOAT) {
stack_store_float(stack, out_offset, f+dx);
}
else {
- float3 dx;
- float3 f = primitive_attribute_float3(kg, sd, desc, &dx, NULL);
- stack_store_float(stack, out_offset, average(f+dx));
+ stack_store_float3(stack, out_offset, make_float3(f+dx, f+dx, f+dx));
}
}
else {
- if(desc.type == NODE_ATTR_FLOAT3) {
- float3 dx;
- float3 f = primitive_attribute_float3(kg, sd, desc, &dx, NULL);
- stack_store_float3(stack, out_offset, f+dx);
+ float3 dx;
+ float3 f = primitive_surface_attribute_float3(kg, sd, desc, &dx, NULL);
+ if (type == NODE_ATTR_FLOAT) {
+ stack_store_float(stack, out_offset, average(f+dx));
}
else {
- float dx;
- float f = primitive_attribute_float(kg, sd, desc, &dx, NULL);
- stack_store_float3(stack, out_offset, make_float3(f+dx, f+dx, f+dx));
+ stack_store_float3(stack, out_offset, f+dx);
}
}
}
@@ -127,28 +121,24 @@ void svm_node_attr_bump_dy(KernelGlobals *kg,
AttributeDescriptor desc = svm_node_attr_init(kg, sd, node, &type, &out_offset);
/* fetch and store attribute */
- if(type == NODE_ATTR_FLOAT) {
- if(desc.type == NODE_ATTR_FLOAT) {
- float dy;
- float f = primitive_attribute_float(kg, sd, desc, NULL, &dy);
+ if (desc.type == NODE_ATTR_FLOAT) {
+ float dy;
+ float f = primitive_surface_attribute_float(kg, sd, desc, NULL, &dy);
+ if (type == NODE_ATTR_FLOAT) {
stack_store_float(stack, out_offset, f+dy);
}
else {
- float3 dy;
- float3 f = primitive_attribute_float3(kg, sd, desc, NULL, &dy);
- stack_store_float(stack, out_offset, average(f+dy));
+ stack_store_float3(stack, out_offset, make_float3(f+dy, f+dy, f+dy));
}
}
else {
- if(desc.type == NODE_ATTR_FLOAT3) {
- float3 dy;
- float3 f = primitive_attribute_float3(kg, sd, desc, NULL, &dy);
- stack_store_float3(stack, out_offset, f+dy);
+ float3 dy;
+ float3 f = primitive_surface_attribute_float3(kg, sd, desc, NULL, &dy);
+ if (type == NODE_ATTR_FLOAT) {
+ stack_store_float(stack, out_offset, average(f+dy));
}
else {
- float dy;
- float f = primitive_attribute_float(kg, sd, desc, NULL, &dy);
- stack_store_float3(stack, out_offset, make_float3(f+dy, f+dy, f+dy));
+ stack_store_float3(stack, out_offset, f+dy);
}
}
}