From c6f5915bc8dcedac7f8892585ff001f03e8e4871 Mon Sep 17 00:00:00 2001 From: bsavery Date: Wed, 16 Aug 2023 14:35:09 +0200 Subject: [PATCH] Cycles: enable HIP for integrated graphics of Ryzen 7000 CPUs Specifically the gfx1036 architecture, for AMD Zen4 APUs. Pull Request: https://projects.blender.org/blender/blender/pulls/110907 --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 054bb0d37f6..036765bcffc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -650,7 +650,8 @@ if(NOT APPLE) # Radeon VII (gfx906) not currently working with HIP SDK, so left out of the list. set(CYCLES_HIP_BINARIES_ARCH gfx900 gfx90c gfx902 - gfx1010 gfx1011 gfx1012 gfx1030 gfx1031 gfx1032 gfx1034 gfx1035 + gfx1010 gfx1011 gfx1012 + gfx1030 gfx1031 gfx1032 gfx1034 gfx1035 gfx1036 gfx1100 gfx1101 gfx1102 CACHE STRING "AMD HIP architectures to build binaries for" )