You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Detect that instances can support ENA-Express and enable it so that they
have more networking bandwith.
Note that the AMI must have the correct drivers installed.
Resolves#308
Recommend to not use EFA unless necessary to avoid insufficient capacity errors when starting new instances in group or when multiple instance types in the group.
380
+
This will enable EFA for all compute resources with instances that support EFA.
381
+
382
+
This can also be controlled for individual instance types in the InstanceConfig section.
383
+
384
+
If EFA is enabled without specifying a placement group name, then each compute resource is assigned its own managed placement group.
385
+
386
+
NOTE: Most EDA workloads cannot take advantage of EFA because they don't use MPI or NCCL.
387
+
I recommend to not use EFA unless necessary to avoid insufficient capacity errors when starting new instances in group or when multiple instance types are in the group.
377
388
378
389
See [https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html#placement-groups-cluster](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html#placement-groups-cluster)
379
390
@@ -827,7 +838,7 @@ Exclude patterns are processed first and take precedence over any includes.
827
838
Instance families and types are regular expressions with implicit '^' and '$' at the begining and end.
828
839
829
840
Each element in the array can be either a regular expression string or a dictionary where the only key
830
-
is the regular expression string and that has overrides **UseOnDemand**, **UseSpot**, and **DisableSimultaneousMultithreading** for the matching instance families or instance types.
841
+
is the regular expression string and that has overrides **UseOnDemand**, **UseSpot**, **DisableSimultaneousMultithreading**, **EnableEfa**, and **PlacementGroupName** for the matching instance families or instance types.
831
842
832
843
The settings for instance families overrides the defaults, and the settings for instance types override the others.
parser.add_argument("--region", "-r", type=str, default=[], action='append', help="AWS region(s) to get info for.")
13
14
parser.add_argument("--input", '-i', type=str, default=None, help="JSON input file. Reads existing info from previous runs. Can speed up rerun if it failed to collect the data for a region.")
# Recommend to not use EFA unless necessary to avoid insufficient capacity errors when starting new instances in group or when multiple instance types in the group
1534
-
# See https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html#placement-groups-cluster
# This is a global setting that can be overridden for instance types in InstanceConfig.
1642
+
# Recommend to not use EFA unless necessary to avoid insufficient capacity errors when starting new instances in group or when multiple instance types in the group
1643
+
# See https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html#placement-groups-cluster
0 commit comments