gpt4 book ai didi

regex - 使用 Regexp 提取和处理 GPU 温度信息

转载 作者:行者123 更新时间:2023-12-04 19:01:08 25 4
gpt4 key购买 nike

我需要从 Linux Ubuntu 应用程序传感器的以下输出中提取和处理显卡温度整数:

amdgpu-pci-0c00
Adapter: PCI adapter
fan1: 1972 RPM
temp1: +50.0°C (crit = +0.0°C, hyst = +0.0°C)

amdgpu-pci-0600
Adapter: PCI adapter
fan1: 1960 RPM
temp1: +47.0°C (crit = +0.0°C, hyst = +0.0°C)

amdgpu-pci-0200
Adapter: PCI adapter
fan1: 1967 RPM
temp1: +52.0°C (crit = +0.0°C, hyst = +0.0°C)

pch_skylake-virtual-0
Adapter: Virtual device
temp1: +33.0°C

amdgpu-pci-0900
Adapter: PCI adapter
fan1: 1893 RPM
temp1: +51.0°C (crit = +0.0°C, hyst = +0.0°C)

amdgpu-pci-0300
Adapter: PCI adapter
fan1: 1992 RPM
temp1: +53.0°C (crit = +0.0°C, hyst = +0.0°C)

coretemp-isa-0000
Adapter: ISA adapter
Package id 0: +24.0°C (high = +80.0°C, crit = +100.0°C)
Core 0: +23.0°C (high = +80.0°C, crit = +100.0°C)
Core 1: +21.0°C (high = +80.0°C, crit = +100.0°C)

假设我想提取与 AMD GPU 温度相关的信息,即 50、47、52、51 和 53。到目前为止,我所拥有的是执行以下代码:
sensors|grep temp| grep -Eo '\+[0-9]{0,9}'

我得到了:
+50
+0
+0
+47
+0
+0
+52
+0
+0
+32
+51
+0
+0
+53
+0
+0

所以我需要弄清楚:
  • 正则表达式环视断言,以便它捕获在数字开头带有 + 符号的整数,而不显示 +(加号)符号。
  • 一种只获取 amdgpu 信息的方法,这样它就不会获取其他信息。
  • 一种处理这些温度数字的方法,例如我可以编写一个 bash 脚本来处理这些数字,而如果温度低于 30,则执行此操作,如果超过 70,则执行此操作。我应该把结果放在一个数组中并做一个循环,还是有其他实用的方法?

  • 请帮忙。
    问候

    最佳答案

    在那里,您将所需的温度存储在一个数组中,然后您可以对它们进行数学运算。
    arr=( $( IFS=$'\n' gawk 'BEGIN{ RS="\n\n"} { if($0 ~ /amdgpu/) print $0 }' test.txt | gawk 'BEGIN{ FS="[+.]" } { if($1 ~ /temp1:/) print $2 }' ) )
    echo "${arr[*]}"
    50 47 52 51 53

    test.txt 包含您的示例输出。从传感器命令获取输入(未测试)
    arr=( $( sensors | IFS=$'\n' gawk 'BEGIN{ RS="\n\n"} { if($0 ~ /amdgpu/) print $0 }' | gawk 'BEGIN{ FS="[+.]" } { if($1 ~ /temp1:/) print $2 }' ) )
    echo "${arr[*]}"
    50 47 52 51 53

    关于regex - 使用 Regexp 提取和处理 GPU 温度信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49985716/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com