From 63dfe305dd5ff00d4de74f0cb9fea9b9901e6b40 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Mon, 3 Oct 2022 23:10:15 +0100 Subject: [PATCH] log GPU info for debugging --- src/helpers/MiscFunctions.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/helpers/MiscFunctions.cpp b/src/helpers/MiscFunctions.cpp index de2f8e74..362e0675 100644 --- a/src/helpers/MiscFunctions.cpp +++ b/src/helpers/MiscFunctions.cpp @@ -331,6 +331,15 @@ void logSystemInfo() { Debug::log(LOG, "Node name: %s", unameInfo.nodename); Debug::log(LOG, "Release: %s", unameInfo.release); Debug::log(LOG, "Version: %s", unameInfo.version); + + Debug::log(NONE, "\n"); + + const std::string GPUINFO = execAndGet("lspci -vnn | grep VGA"); + Debug::log(LOG, "GPU information:\n%s\n", GPUINFO.c_str()); + + if (GPUINFO.contains("NVIDIA")) { + Debug::log(WARN, "Warning: you're using an NVIDIA GPU. Make sure you follow the instructions on the wiki if anything is amiss.\n"); + } // log etc Debug::log(LOG, "os-release:");