Cycles: oneAPI: update windows ocloc to 101.4723

The first public Windows driver version with a higher number is
101.4824, so we bump the min-required driver version on Windows to this
one to ensure compatibility.
This commit is contained in:
Xavier Hallade 2023-10-10 11:42:33 +02:00
parent 54f326e951
commit ef80392721
3 changed files with 5 additions and 5 deletions

@ -19,7 +19,7 @@ buildbot:
optix:
version: '7.3.0'
ocloc:
version: '101.4369'
version: '101.4723'
cmake:
default:
version: any

@ -1638,7 +1638,7 @@ class CyclesPreferences(bpy.types.AddonPreferences):
elif device_type == 'ONEAPI':
import sys
if sys.platform.startswith("win"):
driver_version = "XX.X.101.4644"
driver_version = "XX.X.101.4824"
col.label(text="Requires Intel GPU with Xe-HPG architecture", icon='BLANK1')
col.label(text=iface_("and Windows driver version %s or newer") % driver_version,
icon='BLANK1', translate=False)

@ -853,11 +853,11 @@ void OneapiDevice::get_adjusted_global_and_local_sizes(SyclQueue *queue,
/* Compute-runtime (ie. NEO) version is what gets returned by sycl/L0 on Windows
* since Windows driver 101.3268. */
static const int lowest_supported_driver_version_win = 1014644;
static const int lowest_supported_driver_version_win = 1014824;
# ifdef _WIN32
/* For Windows driver 101.4644, compute-runtime version is 26771.
/* For Windows driver 101.4824, compute-runtime version is 26957.
* This information is returned by `ocloc query OCL_DRIVER_VERSION`.*/
static const int lowest_supported_driver_version_neo = 26771;
static const int lowest_supported_driver_version_neo = 26957;
# else
static const int lowest_supported_driver_version_neo = 25812;
# endif