• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

game Wolfenstein Youngblood

Joined
Apr 8, 2023
Messages
12 (0.03/day)
System Name AN541-R9WP
Processor Ryzen 7 5800H
Memory 16 GB
Video Card(s) 3070 (8GB VRAM) / (100W)
Storage SSD 512 / SSD 2TO
Hello,

I would like to know how to launch this game

All my drivers are up to date



Capture d’écran 2024-06-17 114335.png
 

the54thvoid

Intoxicated Moderator
Staff member
Joined
Dec 14, 2009
Messages
12,586 (2.37/day)
Location
Glasgow - home of formal profanity
Processor Ryzen 7800X3D
Motherboard MSI MAG Mortar B650 (wifi)
Cooling be quiet! Dark Rock Pro 4
Memory 32GB Kingston Fury
Video Card(s) Gainward RTX4070ti
Storage Seagate FireCuda 530 M.2 1TB / Samsumg 960 Pro M.2 512Gb
Display(s) LG 32" 165Hz 1440p GSYNC
Case Asus Prime AP201
Audio Device(s) On Board
Power Supply be quiet! Pure POwer M12 850w Gold (ATX3.0)
Software W10
I found this answer elsewhere:

After much reading of basically every forum on the internet that consists of the function name vkEnumeratePhysicalDevices(), and after the week long bounty on this question still remained unanswered, I've found the answer. It lies within the interop between AMD and Nvidia drivers, at least for my laptop (ROG Zephyrus G14). The forum in which the answer was hiding was here: https://github.com/KhronosGroup/Vulkan-Loader/issues/552
From what I understood from what they were saying over there on GitHub, what is happening as @pdaniel-nv describes, is the validation layers VK_LAYER_AMD_swichable_graphics and VK_LAYER_NV_optimus both want to pick High Performance GPUs, but they only want to filter for AMD or Nvidia GPUs respectively. (VK_LAYER_AMD_swichable_graphics wants to use AMD dedicated GPUs and VK_LAYER_NV_optimus wants to use Nvidia dedicated GPUs) So what happens is both drivers from AMD and Nvidia filter out each others GPUs when these layers are used so the list of available GPUs ends up with nothing.
So basically the solution is to disable one or both of those layers through Vulkan Configurator, or better yet in your code. The only downside is that the developer now has to write custom code to determine which GPU is optimal for their program—which honestly is no big deal in my opinion.


Not sure what you can do with it though, depending on your PC skills.
 
Top