File: performance.rst

package info (click to toggle)
blender-doc 4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 253,604 kB
  • sloc: python: 13,030; javascript: 322; makefile: 113; sh: 107
file content (105 lines) | stat: -rw-r--r-- 3,383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

***********
Performance
***********

.. reference::

   :Panel:     :menuselection:`Render --> Performance`

Properties that affect render speeds or memory consumption.
There are several presets available to help choose between different trade offs:

:Default: Balances memory saving and faster rendering settings.
:Faster Render: Uses settings to render faster at the cost of higher memory consumption.
:Lower Memory: Uses settings to decrease memory considered at the cost of slower renders.


Threads
=======

.. _bpy.types.RenderSettings.threads_mode:

Threads Mode
   Method to determine the maximum number of CPU cores to use while rendering.

   :Auto-Detect:
      Automatically chooses the amount of threads to match the number of logical processors on your computer.
   :Fixed:
      Manually choose the maximum number threads to use for rendering.
      This can be useful for example, if you want to use your computer while rendering,
      you can set the property to a thread count lower the amount of logical processors on your computer.

.. _bpy.types.RenderSettings.threads:

Threads
   The maximum number of CPU cores to use simultaneously while rendering.


Memory
======

.. _bpy.types.RenderSettings.use_auto_tile:

Use Tiling
   Render high resolution images in tiles to reduce memory usage.
   Tiles are cached to disk while rendering to save memory.

.. _bpy.types.RenderSettings.tile_size:

Tile Size
   This value is used to control the size of the tile used for rendering;
   decreasing the size reduces memory usage.

   .. note::

      In some cases changing the *Tile Size* can result in increased performance.
      For example when a small object renders slowly compared to other objects,
      using a small *Tiles Size* can lead to an increase in performance.


Acceleration Structure
======================

.. _bpy.types.CyclesRenderSettings.debug_use_spatial_splits:

Use Spatial Splits
   Spatial splits improve the rendering performance in scenes with a mix of large and small polygons.
   The downsides are longer BVH build times and slightly increased memory usage.

.. _bpy.types.CyclesRenderSettings.debug_use_hair_bvh:

Use Curves BVH
   Use a special type of :term:`BVH` for rendering curves.
   The bounding boxes are not axis aligned allowing a spatially closer fit to the curve geometry.
   Disabling this option will reduce memory, at the cost of increasing curve render time.

.. _bpy.types.CyclesRenderSettings.debug_bvh_time_steps:

BVH Time Steps
   Split BVH primitives by this number of time steps to speed up render time at the expense of memory.

Use Compact BVH
   Use a more compact BVH structure, which can reduce RAM usage but render slower.


Final Render
============

.. _bpy.types.RenderSettings.use_persistent_data:

Persistent Data
   Keep render data in memory after rendering for faster re-renders and animation renders
   at the cost of extra memory usage while performing other tasks in Blender.

   When using multiple :doc:`View Layers </render/layers/view_layer>`,
   only data from a single view layer is preserved to keep memory usage within bounds;
   however, objects shared between view layers are preserved.


Viewport
========

Pixel Size
   Option to control the resolution for viewport rendering.
   Allows you to speed up viewport rendering, which is especially useful for displays with high DPI.