LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

intel_gtt

displays the Graphics Translation Table for Intel GPUs

TLDR

Show GTT status
$ sudo intel_gtt
copy
Dump GTT entries
$ sudo intel_gtt -d
copy
Show specific range
$ sudo intel_gtt -r [0x0-0x1000]
copy

SYNOPSIS

intel_gtt [options]

DESCRIPTION

intel_gtt displays the Graphics Translation Table for Intel GPUs. The GTT maps graphics memory addresses to physical memory.The tool shows aperture usage and memory mappings. Useful for debugging memory allocation and GPU memory issues.

PARAMETERS

-d

Dump GTT entries.
-r RANGE
Show specific address range.
--help
Display help information.

INSTALL

aptsudo apt install intel-gpu-tools
copy
pacmansudo pacman -S intel-gpu-tools
copy
zyppersudo zypper install intel-gpu-tools
copy
nixnix profile install nixpkgs#intel-gpu-tools
copy

CAVEATS

Intel graphics only. Requires root. Part of intel-gpu-tools.

HISTORY

intel_gtt is part of intel-gpu-tools, developed for low-level debugging of Intel integrated graphics.

SEE ALSO

Copied to clipboard
Kai