{% for name, partition in partitions.items() %}
{% if partition.simple %}
{% endif %}
{% endfor %}
CPUs
GPUs
{% set ns = namespace(max_ngpus=0) %}
{% for partition in partitions.values() %}
{% if partition.simple and ns.max_ngpus <= partition.max_ngpus %}
{% set ns.max_ngpus = partition.max_ngpus %}
{% endif %}
{% endfor %}
{% for index in range(ns.max_ngpus+1) %}
{% endfor %}
Options
List of available resources:
Current Status
Partition
# nodes
# avail
{% for name, partition in partitions.items() %}
{% if partition.simple %}
{{ name }}
{{ partition.max_nnodes }}
{{ partition.nnodes_idle }}
{% endif %}
{% endfor %}
Custom:
⚠ Required packages in custom environments: batchspawner{% if batchspawner_version %}~={{batchspawner_version}}{% endif %} and
jupyterhub{% if jupyterhub_version %}~={{jupyterhub_version}}{% endif %}.