1 2 3 4 5 6 7 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
|
.. -*- rst -*-
Copyright (c) 2022-2023 Nanook Consulting. All rights reserved.
Copyright (c) 2023 Jeffrey M. Squyres. All rights reserved.
$COPYRIGHT$
Additional copyrights may follow
$HEADER$
.. The following line is included so that Sphinx won't complain
about this file not being directly included in some toctree
PRRTE supports several levels of user-specified hostfiles based on an
established precedence order. Users can specify a hostfile that
contains a list of nodes to be used for the job, or can provide a
comma-delimited list of nodes to be used for that job via the
``--host`` command line option.
The precedence order applied to these various options depends to some
extent on the local environment. The following table illustrates how
host and hostfile directives work together to define the set of hosts
upon which a DVM will execute the job in the absence of a resource
manager (RM):
.. list-table::
:header-rows: 1
:widths: 7 10 45
* - host
- hostfile
- Result
* - unset
- unset
- | The DVM will utilize all its available resources
| when mapping the job.
* - set
- unset
- | Host option defines resource list for the job
* - unset
- set
- | Hostfile defines resource list for the job
* - set
- set
- | Hostfile defines resource list for the job,
| then host filters the list to define the final
| set of nodes to be used for the job
.. include:: /prrte-rst-content/detail-hostfiles.rst
.. include:: /prrte-rst-content/detail-hosts-relative-indexing.rst
|