diff --git a/tinygrad/runtime/ops_amd.py b/tinygrad/runtime/ops_amd.py index 412c5e9337..d491efba25 100644 --- a/tinygrad/runtime/ops_amd.py +++ b/tinygrad/runtime/ops_amd.py @@ -649,7 +649,7 @@ class KFDIface: class AMAllocationMeta: owner:AMDDevice; mapped_devs:list[AMDDevice]; mapping:AMMapping # noqa: E702 class PCIIface: - supported_devs:list[int] = [0x744c, 0x7480] + supported_devs:list[int] = [0x744c, 0x7480, 0x7550] vfio:bool = getenv("VFIO", 1) and HWInterface.exists("/dev/vfio/vfio") vfio_fd:HWInterface gpus:list[Any] = []