Visible to Intel only — GUID: GUID-C4585A47-0D2D-46D9-8315-503987C34065
GPU: Disable Hangcheck
This section applies only to applications with long-running GPU compute workloads in native environments. It is not recommended for virtualizations or other standard usages of GPU, such as gaming.
A workload that takes more than four seconds for GPU hardware to execute is a long-running workload. By default, individual threads that qualify as long-running workloads are considered hung and are terminated. By disabling the hangcheck timeout period, you can avoid this problem.
To disable hangcheck until the next reboot:
sudo sh -c "echo N> /sys/module/i915/parameters/enable_hangcheck"
To disable hangcheck across multiple reboots:
Open a terminal.
Open the grub file in /etc/default.
In the grub file, find the line GRUB_CMDLINE_LINUX_DEFAULT="".
Enter the following text between the quotes (“”):
i915.enable_hangcheck=0
Run the following command:
sudo update-grub
Reboot the system. Hangcheck remains disabled.