Hacker News new | ask | show | jobs
by cm3 3751 days ago
So the loader knows what hardware is going to process it and therefore uses the right driver. Is that correct? Trying to imagine how it might work.
1 comments

When you create a Vulkan context you first need to enumerate the rendering devices on the system and select the one you want to use. You can actually explicitly use multiple contexts for different devices in your application, e.g. using the IGP for compute tasks while doing the main rendering on a dedicated GPU.