From 0a7f2e1882dc7ffe1846d07587884df2cc6d8e2f Mon Sep 17 00:00:00 2001 From: jhnnsrs Date: Fri, 20 Oct 2023 14:28:29 +0200 Subject: [PATCH] update --- src/screens/wizard/forms/CheckGPUDocker.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/screens/wizard/forms/CheckGPUDocker.tsx b/src/screens/wizard/forms/CheckGPUDocker.tsx index 79b8190..4dd0aa1 100644 --- a/src/screens/wizard/forms/CheckGPUDocker.tsx +++ b/src/screens/wizard/forms/CheckGPUDocker.tsx @@ -43,25 +43,25 @@ export const CheckGPUDocker: React.FC = (props) => {
- Some functionality in this channels require GPU support. Let's + Some functionality in this channels require GPU support that needs CUDA 11 or above. Let's check if your system supports this.

- In order to check if your system supports GPU support, we will check if - docker is installed and if you have a GPU available on your system. This + In order to check if your system supports CUDA 11, we run a little docker + container and check if your CUDA Drivers are correctly installed. This check might take a few seconds.
{checked && !checking &&
{logs.join("\n").includes("failed") ? ( - It appears that your system does not support GPU support. You will not - be able to install apps that require GPU support. Please follow the - instructions in the documentation to get you started. + It appears that your system does not support CUDA 11. Please refer to the documentation + on how to install the latest nvidia drivers on your system. Otherwise you can still use + this channel, but you will not be able to install apps that require GPU support. ) : - 🎉 Looks like GPU support is available. You can install apps that require GPU support. + 🎉 Looks like CUDA support is available. You can install apps that require GPU support. }