-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't enable GPU #119
Comments
same here i run a dual GPU setup (AMD+NVIDIA) some programs incorrectly pick NVIDIA over AMD, even if the main GPU is AMD. then proceed to fail because the nvidia card has no nvidia driver. leading to a crash or a loss of features. i'm afraid that this program also suffers from this issue. Please correct me if i'm wrong |
Can confirm. Any Idea where in the code it might be? We can #[cfg(target_os = "linux")]
fn check_gpu() -> bool {
// Execute a command like `lspci | grep -i nvidia` and check if the output is non-empty
let output = execute_command("lshw -C display | grep 'configuration: driver=nvidia'");
!output.is_empty()
} but what else? |
this also happens on my Optimus laptop (iGPU + GTX 1650) even tho i have the nvidia driver installed |
The issue is that the app will only allow this on MacSilicon (from it's code).... |
im not sure to understand, could you explain a bit more in detail ? |
Sure Check here |
Also you may do this search |
thanks |
The button to turn on the GPU is greyed out so it is using my crappy cpu instead of my rtx4050 is there a way to get around this?
The text was updated successfully, but these errors were encountered: