From 8d0b69e3ee4637c85587cf720fa595d203129389 Mon Sep 17 00:00:00 2001 From: Bogdan Tintor Date: Tue, 27 Aug 2024 14:30:09 +0200 Subject: [PATCH] CTX-6655: Change incorrect comment to correct one. --- coretex/cli/modules/node.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/coretex/cli/modules/node.py b/coretex/cli/modules/node.py index 0f4d6b7d..80696556 100644 --- a/coretex/cli/modules/node.py +++ b/coretex/cli/modules/node.py @@ -390,9 +390,9 @@ def configureNode(advanced: bool) -> NodeConfiguration: else: nodeConfig.image = "coretexai/coretex-node" - # NOTE: If node OS is linux and Docker Desktop is being used CLI won't prompt for GPU access - # Reason is that we cannot solve the NVIDIA bug without additionals changes to daemon.json file - # which doesn't exist when using Docker Desktop + # GPU Access is supported for: + # - Linux (Docker Engine) + # - Windows (Docker Desktop) if isGPUAvailable() and not (docker.isDockerDesktop() and currentOS != "windows"): nodeConfig.allowGpu = ui.clickPrompt("Do you want to allow the Node to access your GPU? (Y/n)", type = bool, default = True)