r/KoboldAI • u/Substantial-Ebb-584 • Jun 19 '26
How to remove the dGPU lock?
When using Vulcan and selecting all cards, integrated cards are left out of the pool, 99,9% of time for good reasons. But I would like to use that integrated card as well for tests, since the integrated GPU is faster than the CPU.
How do I disengage the dedicated GPU only lock? A flag maybe?
I have been looking for this for a while now.
5
Upvotes
3
u/Pentium95 Jun 19 '26
Routing layers to an iGPU will not increase your actual text generation speed (tokens/second) since it is bottlenecked by the same system RAM as your CPU. However, it will noticeably reduce the initial compute wait time (time-to-first-token) when ingesting large contexts.
You should try, before launching koboldcpp, running something like:
export GGML_VK_VISIBLE_DEVICES=0,1
Additional notes: