From 6428c847fdfa7ebe8f7545e54d28ac0d5ea84dcd Mon Sep 17 00:00:00 2001 From: Xavier Hallade Date: Tue, 6 Dec 2022 13:21:19 +0100 Subject: [PATCH] Cycles oneAPI: clarify Linux Driver requirements in GUI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "Linux Driver" wasn't precise enough for users, the actual driver requirement is on "Intel® Graphics Compute Runtime for oneAPI Level Zero and OpenCL™ Driver", ie. https://github.com/intel/compute-runtime / intel-level-zero-gpu package. This follows-up the discussion on https://developer.blender.org/rBff89c1793d8c75615ed43248def25812ec13e6e3 --- intern/cycles/blender/addon/properties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py index fe8a29200f0..b535571138a 100644 --- a/intern/cycles/blender/addon/properties.py +++ b/intern/cycles/blender/addon/properties.py @@ -1670,7 +1670,7 @@ class CyclesPreferences(bpy.types.AddonPreferences): col.label(text="and Windows driver version 101.3430 or newer", icon='BLANK1') elif sys.platform.startswith("linux"): col.label(text="Requires Intel GPU with Xe-HPG architecture and", icon='BLANK1') - col.label(text=" - Linux driver version xx.xx.23904 or newer", icon='BLANK1') + col.label(text=" - intel-level-zero-gpu version 1.3.23904 or newer", icon='BLANK1') col.label(text=" - oneAPI Level-Zero Loader", icon='BLANK1') elif device_type == 'METAL': col.label(text="Requires Apple Silicon with macOS 12.2 or newer", icon='BLANK1')