Linux: AMD GPUの情報対応

このコミットが含まれているのは:
守矢諏訪子 2024-06-19 17:15:01 +09:00
コミット c73167415c

ファイルの表示

@ -51,7 +51,10 @@ const char *display_gpu() {
"sed 's/ Core Processor Integrated Graphics Controller//'"); "sed 's/ Core Processor Integrated Graphics Controller//'");
#elif defined(__linux__) #elif defined(__linux__)
return run_gpu_command("lspci | grep VGA | sed 's/^.*: //' | " return run_gpu_command("lspci | grep VGA | sed 's/^.*: //' | "
"sed 's/Corporation //' | sed 's/ (.*$//'"); "sed 's/Corporation //' | sed 's/ (.*$//' | "
"sed 's/Advanced Micro Devices//' | "
"sed 's/, Inc. //' | sed 's/Navi [0-9]* //' | "
"sed 's/\\[//g' | sed 's/\\]//g'");
#else #else
if ( if (
access("/bin/glxinfo", F_OK) == -1 && access("/bin/glxinfo", F_OK) == -1 &&