climate_ref.slurm
#
SlurmChecker
#
Check and get slurm settings.
Source code in packages/climate-ref/src/climate_ref/slurm.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | |
can_account_use_partition(account_name, partition_name)
#
Check if an account has access to a specific partition.
Returns:
| Type | Description |
|---|---|
bool: True if accessible, False if not accessible or error occurred
|
|
Source code in packages/climate-ref/src/climate_ref/slurm.py
can_account_use_qos(account_name, qos_name)
#
Check if an account has access to a specific qos.
Returns:
| Type | Description |
|---|---|
bool: True if accessible, False if not accessible or error occurred
|
|
Source code in packages/climate-ref/src/climate_ref/slurm.py
check_account_partition_access_with_limits(account_name, partition_name)
#
Comprehensive check of account access and partition limits.
Returns dictionary with all relevant information.
Source code in packages/climate-ref/src/climate_ref/slurm.py
get_account_info(account_name)
#
Get all associations for an account
Source code in packages/climate-ref/src/climate_ref/slurm.py
get_node_from_partition(partition_name)
#
Get the node information for a specific partition.
Returns:
| Type | Description |
|---|---|
Dicts
|
|
Source code in packages/climate-ref/src/climate_ref/slurm.py
get_partition_info(partition_name)
#
Check if a partition exists in the Slurm configuration.
get_partition_limits(partition_name)
#
Get time limits for a specific partition.
Returns:
| Type | Description |
|---|---|
Dict with 'max_time' and 'default_time' (strings or UNLIMITED)
|
or None if partition doesn't exist or error occurred |
Source code in packages/climate-ref/src/climate_ref/slurm.py
get_qos_info(qos_name)
#
get_qos_limits(qos_name)
#
Get time limits for a specific qos.
Returns:
| Type | Description |
|---|---|
Dict with 'max_time' and 'default_time' (strings or UNLIMITED)
|
or None if partition doesn't exist or error occurred |