Can not choose second gpu using wgpu
Quackdoc opened this issue · 2 comments
Running on windows I have tried to set my intel gpu using let-env WGPU_ADAPTER_NAME = 'intel'
via nushell to no succsess.
I also tried changing device choose to let device = WgpuDevice::DiscreteGpu(0);
and it too did not work.
in the end I had to set type Backend = WgpuBackend<burn_wgpu::Vulkan, f32, i32>;
and use VK_ICD_FILENAMES = '\windows\system32\DriverStore\FileRepository\iigd_dch_d.inf_amd64_50b98d237e0753a8\igvk64.json'
to use the intel gpu (for anyone stumbling upon this the link may be different depending on gpu, so you will need to manually find igvk64.json
)
not sure if this is an issue with whisper-burn or the wgpu backend for burn, I think it's a wgpu-burn issue but thought it would be safer to report issue here first