diff --git a/source/blender/functions/intern/lazy_function_graph_executor.cc b/source/blender/functions/intern/lazy_function_graph_executor.cc index 8105278e823..ac0bad9a7d6 100644 --- a/source/blender/functions/intern/lazy_function_graph_executor.cc +++ b/source/blender/functions/intern/lazy_function_graph_executor.cc @@ -435,7 +435,7 @@ class Executor { reinterpret_cast(buffer + self_.init_buffer_info_.node_states_array_offset), nodes.size()}; - threading::parallel_for(nodes.index_range(), 256, [&](const IndexRange range) { + threading::parallel_for(nodes.index_range(), 1024, [&](const IndexRange range) { for (const int i : range) { const Node &node = *nodes[i]; char *memory = buffer + self_.init_buffer_info_.node_states_offsets[i];