You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 21, 2020. It is now read-only.
Hi, i got the following error starting wattmanGTK, as my hwmon0 modules name is in "/sys/class/hwmon/hwmon0/device/name" rather than "/sys/class/hwmon/hwmon0/name".
Reading clock states and limits.
Traceback (most recent call last):
File "run.py", line 23, in <module>
wattman.main()
File "wattman.py", line 150, in main
if open(hwmondir + folder + '/name').readline().rstrip() == 'amdgpu':
FileNotFoundError: [Errno 2] No such file or directory: '/sys/class/hwmon/hwmon0/name'
I worked around this problem by adding 'if os.path.isfile(hwmondir + folder + '/name'):' in line 150 of wattman.py.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, i got the following error starting wattmanGTK, as my hwmon0 modules name is in "/sys/class/hwmon/hwmon0/device/name" rather than "/sys/class/hwmon/hwmon0/name".
I worked around this problem by adding
'if os.path.isfile(hwmondir + folder + '/name'):'
in line 150 of wattman.py.The text was updated successfully, but these errors were encountered: