|
116 | 116 | - InstanceType: c7i.48xlarge # compute optimized nodes
|
117 | 117 | MinCount: 0
|
118 | 118 | MaxCount: 20 # least number of nodes needed to simulate the full O1 circuit x2
|
| 119 | + DisableSimultaneousMultithreading: true |
| 120 | + Efa: # low-latency, high BW network |
| 121 | + Enabled: true # https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa-start.html#efa-start-security |
| 122 | + Networking: |
| 123 | + PlacementGroup: # try to place nodes close to each other |
| 124 | + Enabled: true |
| 125 | + SubnetIds: [!config base_subnet_id] |
| 126 | + SecurityGroups: |
| 127 | + - !config base_security_group_id |
| 128 | + - !config efa_security_group_id # Efa |
| 129 | + CustomSlurmSettings: |
| 130 | + MaxNodes: 20 |
| 131 | + MaxTime: 720 |
| 132 | + Iam: |
| 133 | + S3Access: |
| 134 | + - BucketName: sboinfrastructureassets-sandbox |
| 135 | + |
| 136 | +# ============================================================== |
| 137 | +# prod-mpi-mem queue, for tightly-coupled, memory-intensive jobs |
| 138 | +# ============================================================== |
| 139 | +- Name: prod-mpi-mem |
| 140 | + AllocationStrategy: lowest-price # usually on-demand |
| 141 | + ComputeResources: |
| 142 | + - Name: cpu-m7a |
| 143 | + Instances: |
| 144 | + - InstanceType: m7a.48xlarge # memory-optimized nodes, AMD arch |
| 145 | + MinCount: 0 |
| 146 | + MaxCount: 20 # least number of nodes needed to simulate the full O1 circuit x2 |
| 147 | + Efa: # low-latency, high BW network |
| 148 | + Enabled: true # https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa-start.html#efa-start-security |
| 149 | + - Name: cpu-m7i |
| 150 | + Instances: |
| 151 | + - InstanceType: m7i.48xlarge # memory-optimized nodes, Intel arch |
| 152 | + MinCount: 0 |
| 153 | + MaxCount: 20 # least number of nodes needed to simulate the full O1 circuit x2 |
| 154 | + DisableSimultaneousMultithreading: true |
119 | 155 | Efa: # low-latency, high BW network
|
120 | 156 | Enabled: true # https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa-start.html#efa-start-security
|
121 | 157 | Networking:
|
|
0 commit comments