Skip to content

Commit

Permalink
platform: Set RDMA protocol as default for trn1/trn1n platforms
Browse files Browse the repository at this point in the history
With switching to this plugin implementation, we want to take
advantage of the RDMA protocol on trn1/trn1n platforms without setting
environment variables.

This commit sets RDMA protocol as default for trn1/trn1n platforms.

Signed-off-by: Michael Axtmann <[email protected]>
  • Loading branch information
maxtmann committed Aug 24, 2024
1 parent 5fe5643 commit 756214e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform-aws.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ struct ec2_platform_data {
},
{
.name = "trn1.32xlarge",
.default_protocol = "SENDRECV",
.default_protocol = "RDMA",
.gdr_required = true,
.net_flush_required = true,
.domain_per_thread = 1,
},
{
.name = "trn1n.32xlarge",
.default_protocol = "SENDRECV",
.default_protocol = "RDMA",
.gdr_required = true,
.net_flush_required = true,
.domain_per_thread = 1,
Expand Down

0 comments on commit 756214e

Please sign in to comment.