add relaxed_ordering option (#324)

* add relaxed_ordering option

add an environment variable that allows to control setting the
IBV_ACCESS_RELAXED_ORDERING flag when registering memory with the
ibv_reg_mr* functions.

* missed a spot

[ROCm/rocshmem commit: 2ae2033648]
This commit is contained in:
Edgar Gabriel
2025-11-20 08:20:25 -06:00
committed by GitHub
parent b126537b55
commit db4c6293cc
5 changed files with 11 additions and 0 deletions
+1
View File
@@ -68,6 +68,7 @@ namespace envvar {
const var<std::string> provider("PROVIDER", "");
const var<bool> alternate_qp_ports("ALTERNATE_QP_PORTS", "", true);
const var<uint8_t> traffic_class("TRAFFIC_CLASS", "", 0);
const var<bool> pcie_relaxed_ordering("PCIE_RELAXED_ORDERING", "", false);
} // namespace gda
namespace _detail {