02-06-2020, 12:00 AM
(02-05-2020, 01:48 PM)gal_shalif Wrote: Do the Pinebook pro GPU has a hardware problem (ex: over heating) that prevent running a long OpenCL stress test?
Nobody was stressing the gpu as much as you, yet.
Perhaps start with the usual suspects:
Display journal logs in real-time
Code:
$ journalctl -f
The kernel includes a thermal driver, maybe it's print something to dmesg?
Code:
$ dmesg
Then you can look at the cpu and gpu temperatures. If you don't find a gui, you can look at the sysfs attributes. They might vary depending on the kernel. Here from a modern 5.5 kernel
Code:
debian:/sys/class/thermal$ cat thermal_zone0/hwmon?/name
cpu
debian:/sys/class/thermal$ cat thermal_zone1/hwmon?/name
gpu
cat these values in a loop for real-time updates
Code:
debian:/sys/class/thermal$ cat thermal_zone0/hwmon?/temp1_input
25000
debian:/sys/class/thermal$ cat thermal_zone1/hwmon?/temp1_input
25000
Let us know your findings.