[Bf-blender-cvs] [a832f103ac0] cycles_oneapi: Cycles oneAPI: adjust GPU requirement in the UI

Xavier Hallade noreply at git.blender.org
Mon Jun 27 09:21:00 CEST 2022


Commit: a832f103ac034a9f523798d08294529f73d6bb6f
Author: Xavier Hallade
Date:   Mon Jun 27 09:17:51 2022 +0200
Branches: cycles_oneapi
https://developer.blender.org/rBa832f103ac034a9f523798d08294529f73d6bb6f

Cycles oneAPI: adjust GPU requirement in the UI

For now we officially support Intel Arc GPUs and newer.
Older GPUs can be enabled for development purposes using the environment
variable CYCLES_ONEAPI_ALL_DEVICES=1

===================================================================

M	intern/cycles/blender/addon/properties.py

===================================================================

diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 065a45ac754..bafbbc99479 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -1556,7 +1556,7 @@ class CyclesPreferences(bpy.types.AddonPreferences):
                     col.label(text="and AMD driver version 22.10 or newer", icon='BLANK1')
             elif device_type == 'ONEAPI':
                 import sys
-                col.label(text="Requires Intel GPU with Xe architecture", icon='BLANK1')
+                col.label(text="Requires Intel GPU with Xe-HPG architecture", icon='BLANK1')
                 if sys.platform.startswith("win"):
                     col.label(text="and Windows driver version 101.1660 or newer", icon='BLANK1')
                 elif sys.platform.startswith("linux"):



More information about the Bf-blender-cvs mailing list