Documentation/gpu/amdgpu/ptl.rst
The Peak Tops Limiter (PTL) sysfs interface enables users to control and
configure the PTL feature for each GPU individually. All PTL-related
sysfs files are located under /sys/class/drm/cardX/device/ptl/, where
X is the GPU index. Through these files, users can enable or disable
PTL, set preferred data formats, and query supported formats for each GPU.
The following files are available under /sys/class/drm/cardX/device/ptl/:
ptl_enableptl_formatptl_supported_formatsFile: ptl_enable
Type: Read/Write (rw)
Read: Returns the current PTL status as a string: enabled if PTL
is active, or disabled if inactive.
Write:
1 or enabled to enable PTL0 or disabled to disable PTLExamples::
# Query PTL status
cat /sys/class/drm/card1/device/ptl/ptl_enable
# Output: enabled
# Enable PTL
sudo bash -c "echo 1 > /sys/class/drm/card1/device/ptl/ptl_enable"
# Disable PTL
sudo bash -c "echo 0 > /sys/class/drm/card1/device/ptl/ptl_enable"
File: ptl_format
Type: Read/Write (rw)
Read: Returns the two preferred formats, e.g. I8,F32.
Write: Accepts two formats separated by a comma, e.g. I8,F32.
Examples::
# Query PTL formats
cat /sys/class/drm/card1/device/ptl/ptl_format
# Output: I8,F32
# Set PTL formats
sudo bash -c "echo I8,F32 > /sys/class/drm/card1/device/ptl/ptl_format"
File: ptl_supported_formats
Type: Read-only (r)
Read: Returns a comma-separated list of supported formats, e.g.
I8,F16,BF16,F32,F64.
Example::
# Check supported formats
cat /sys/class/drm/card1/device/ptl/ptl_supported_formats
# Output: I8,F16,BF16,F32,F64
ptl_format returns N/A.The PTL sysfs nodes are implemented in drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c.