INCITE Eos

Link to official documentation

class flow.environments.incite.EosEnvironment

Environment profile for the eos super computer.

https://www.olcf.ornl.gov/computing-resources/eos/

eos.sh
{# Templated in accordance with: https://www.olcf.ornl.gov/for-users/system-user-guides/eos/running-jobs/ #}
{% set mpiexec = "aprun" %}
{% extends "torque.sh" %}
{% block tasks %}
{% set threshold = 0 if force else 0.9 %}
{% set cpu_tasks = operations|calc_tasks('np', parallel, force) %}
{% if operations|calc_tasks('ngpu', true, true) and not force %}
{% raise "GPUs were requested but are unsupported by Eos!" %}
{% endif %}
{% set nn = nn|default(cpu_tasks|calc_num_nodes(32), true) %}
#PBS -l nodes={{ nn|check_utilization(cpu_tasks, 32, threshold, 'CPU') }}
{% endblock %}
{% block header %}
{{ super() -}}
{% set account = account|default(environment|get_account_name, true) %}
{% if account %}
#PBS -A {{ account }}
{% endif %}
{% endblock %}