There is no option to select GPU for calculation. The calculations take place on the CPU. #105347

Open
opened 2024-06-05 04:16:44 +02:00 by sungreen sungreen · 0 comments

System Information
Operating system: Windows-10-10.0.22631-SP0 64 Bits
Graphics card: NVIDIA GeForce RTX 3080/PCIe/SSE2 NVIDIA Corporation 4.6.0 NVIDIA 551.32

Blender Version
Broken: version: 4.0.2, branch: blender-v4.0-release, commit date: 2023-12-05 07:41, hash: 9be62e85b727
Worked: (newest version of Blender that worked as expected)

Addon Information
Name: Dynamic Sky (1, 0, 6)
Author: Pratik Solanki

Short description of error
[There is no option to select GPU for calculation. The calculations take place on the CPU.]

Exact steps for others to reproduce the error
[The calculations take place on the CPU and there is no way to specify the GPU for calculations.The solution may be if you specify the device for computing on the GPU, for example with this code after line 82

bpy.context.scene.render.engine = 'CYCLES'

+bpy.context.scene.cycles.device = 'GPU'
+bpy.context.scene.cycles.feature_set = 'SUPPORTED'
+bpy.context.scene.cycles.compute_device_type = 'CUDA'
+bpy.context.scene.cycles.device = 'GPU'
+bpy.context.scene.cycles.use_cpu = False
]

**System Information** Operating system: Windows-10-10.0.22631-SP0 64 Bits Graphics card: NVIDIA GeForce RTX 3080/PCIe/SSE2 NVIDIA Corporation 4.6.0 NVIDIA 551.32 **Blender Version** Broken: version: 4.0.2, branch: blender-v4.0-release, commit date: 2023-12-05 07:41, hash: `9be62e85b727` Worked: (newest version of Blender that worked as expected) **Addon Information** Name: Dynamic Sky (1, 0, 6) Author: Pratik Solanki **Short description of error** [There is no option to select GPU for calculation. The calculations take place on the CPU.] **Exact steps for others to reproduce the error** [The calculations take place on the CPU and there is no way to specify the GPU for calculations.The solution may be if you specify the device for computing on the GPU, for example with this code after line 82 bpy.context.scene.render.engine = 'CYCLES' +bpy.context.scene.cycles.device = 'GPU' +bpy.context.scene.cycles.feature_set = 'SUPPORTED' +bpy.context.scene.cycles.compute_device_type = 'CUDA' +bpy.context.scene.cycles.device = 'GPU' +bpy.context.scene.cycles.use_cpu = False ]
sungreen sungreen added the
Status
Needs Triage
Priority
Normal
Type
Report
labels 2024-06-05 04:16:44 +02:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender-addons#105347
No description provided.