From 1e3a161c74dd7d5ff747188dac010b69c0aa3d4f Mon Sep 17 00:00:00 2001 From: Aurelien Bouteiller Date: Tue, 2 Dec 2025 11:32:37 -0500 Subject: [PATCH] MLX5 cards have a vendor-id that does not match the pci-vendor-id for (#342) some reason. Signed-off-by: Aurelien Bouteiller [ROCm/rocshmem commit: 0f7da76018776bcd7db5053090b92f852cc4a524] --- projects/rocshmem/src/gda/backend_gda.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rocshmem/src/gda/backend_gda.hpp b/projects/rocshmem/src/gda/backend_gda.hpp index 990e2401eb..9ddab04d34 100644 --- a/projects/rocshmem/src/gda/backend_gda.hpp +++ b/projects/rocshmem/src/gda/backend_gda.hpp @@ -56,7 +56,7 @@ enum GDAProvider { }; inline constexpr uint32_t GDA_IONIC_VENDOR_ID = 0x1DD8; -inline constexpr uint32_t GDA_MLX5_VENDOR_ID = 0x15B3; +inline constexpr uint32_t GDA_MLX5_VENDOR_ID = 0x02c9; //PCI-ID is 15b3 inline constexpr uint32_t GDA_BNXT_VENDOR_ID = 0x14E4; class GDABackend : public Backend {