Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2022-08-18 18:03:59 +0300
committerSergey Sharybin <sergey@blender.org>2022-08-18 18:03:59 +0300
commit96206aa98a98d7eaabbbdb77827aa53841aca1db (patch)
treee9e5f45e8ea35f28caf502854d16705c685f0a43 /build_files
parent582704a75837e33c4cec4f55cb9dfd23be1ae4e9 (diff)
Enable oneAPI AoT kernels for Release on Linux
Windows still needs some work on the buildbot side, so keep that disabled for the time being.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/config/blender_release.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/build_files/cmake/config/blender_release.cmake b/build_files/cmake/config/blender_release.cmake
index 2567e0b444a..72b641c1aee 100644
--- a/build_files/cmake/config/blender_release.cmake
+++ b/build_files/cmake/config/blender_release.cmake
@@ -71,6 +71,8 @@ if(NOT WIN32)
endif()
if(WIN32)
set(WITH_WASAPI ON CACHE BOOL "" FORCE)
+ # Disabled until the buildbot environment is configured.
+ set(WITH_CYCLES_ONEAPI_BINARIES OFF CACHE BOOL "" FORCE)
endif()
if(UNIX AND NOT APPLE)
set(WITH_DOC_MANPAGE ON CACHE BOOL "" FORCE)
@@ -78,6 +80,7 @@ if(UNIX AND NOT APPLE)
set(WITH_PULSEAUDIO ON CACHE BOOL "" FORCE)
set(WITH_X11_XINPUT ON CACHE BOOL "" FORCE)
set(WITH_X11_XF86VMODE ON CACHE BOOL "" FORCE)
+ set(WITH_CYCLES_ONEAPI_BINARIES OM CACHE BOOL "" FORCE)
endif()
if(NOT APPLE)
set(WITH_XR_OPENXR ON CACHE BOOL "" FORCE)
@@ -87,7 +90,4 @@ if(NOT APPLE)
set(WITH_CYCLES_CUBIN_COMPILER OFF CACHE BOOL "" FORCE)
set(WITH_CYCLES_HIP_BINARIES ON CACHE BOOL "" FORCE)
set(WITH_CYCLES_DEVICE_ONEAPI ON CACHE BOOL "" FORCE)
-
- # Disable AoT kernels compilations until buildbot can deliver them in a reasonable time.
- set(WITH_CYCLES_ONEAPI_BINARIES OFF CACHE BOOL "" FORCE)
endif()