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
Do not auto-prune instance types if there are too many (#235)
I was previously only allowing 1 memory size/core count combination to keep
the number of compute resources down and also was combining multiple instance
types in one compute resource if possible.
This was to try to maximize the number of instance types that were configured.
This led to people not being able to configure the exact instance types they
wanted.
The preference is to notify the user and let them choose which instances types
to exclude or to reduce the number of included types.
So, I've reverted to my original strategy of 1 instance type per compute resource and 1 CR per queue.
The compute resources can be combined into any queues that the user wants using
custom slurm settings.
I had to exclude instance types in the default configuration in order to keep from exceeding the PC limits.
Resolves#220
Update ParallelCluster version in config files and docs.
Clean up security scan.
Copy file name to clipboardExpand all lines: source/resources/config/default_config.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ StackName: slurmminimal-config
43
43
44
44
slurm:
45
45
ParallelClusterConfig:
46
-
Version: 3.8.0
46
+
Version: 3.9.1
47
47
# @TODO: Choose the CPU architecture: x86_64, arm64. Default: x86_64
48
48
# Architecture: x86_64
49
49
# @TODO: Update DatabaseStackName with stack name you deployed ParallelCluster database into. See: https://docs.aws.amazon.com/parallelcluster/latest/ug/tutorials_07_slurm-accounting-v3.html#slurm-accounting-db-stack-v3
Copy file name to clipboardExpand all lines: source/resources/config/slurm_all_arm_instance_types.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ StackName: slurm-all-arm-config
37
37
38
38
slurm:
39
39
ParallelClusterConfig:
40
-
Version: 3.8.0
40
+
Version: 3.9.1
41
41
Architecture: arm64
42
42
# @TODO: Update DatabaseStackName with stack name you deployed ParallelCluster database into. See: https://docs.aws.amazon.com/parallelcluster/latest/ug/tutorials_07_slurm-accounting-v3.html#slurm-accounting-db-stack-v3
Copy file name to clipboardExpand all lines: source/resources/config/slurm_all_x86_instance_types.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ StackName: slurm-all-x86-config
37
37
38
38
slurm:
39
39
ParallelClusterConfig:
40
-
Version: 3.8.0
40
+
Version: 3.9.1
41
41
Architecture: x86_64
42
42
# @TODO: Update DatabaseStackName with stack name you deployed ParallelCluster database into. See: https://docs.aws.amazon.com/parallelcluster/latest/ug/tutorials_07_slurm-accounting-v3.html#slurm-accounting-db-stack-v3
Copy file name to clipboardExpand all lines: source/resources/config/slurm_recommended_arm_instance_types.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ StackName: slurm-arm-config
37
37
38
38
slurm:
39
39
ParallelClusterConfig:
40
-
Version: 3.8.0
40
+
Version: 3.9.1
41
41
Architecture: arm64
42
42
# @TODO: Update DatabaseStackName with stack name you deployed ParallelCluster database into. See: https://docs.aws.amazon.com/parallelcluster/latest/ug/tutorials_07_slurm-accounting-v3.html#slurm-accounting-db-stack-v3
Copy file name to clipboardExpand all lines: source/resources/config/slurm_recommended_x86_instance_types.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ StackName: slurm-x86-config
37
37
38
38
slurm:
39
39
ParallelClusterConfig:
40
-
Version: 3.8.0
40
+
Version: 3.9.1
41
41
Architecture: x86_64
42
42
# @TODO: Update DatabaseStackName with stack name you deployed ParallelCluster database into. See: https://docs.aws.amazon.com/parallelcluster/latest/ug/tutorials_07_slurm-accounting-v3.html#slurm-accounting-db-stack-v3
0 commit comments