From 5b6bc278e7044941c70c662f472857816444e983 Mon Sep 17 00:00:00 2001 From: Jacopo De Amicis Date: Wed, 1 May 2019 00:07:38 +0200 Subject: [PATCH] Formatted table and bullet points. --- modular-jobs.rst | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/modular-jobs.rst b/modular-jobs.rst index 84506dd..535f310 100644 --- a/modular-jobs.rst +++ b/modular-jobs.rst @@ -154,8 +154,9 @@ This can be done via the ``gw_plugin`` option: The ``gw_plugin`` option accepts either a label for a plugin already installed on the system, either a path to a user-defined plugin. Currently two plugins are available on the JURECA system: + * ``plugin01`` is the default plugin (used when the ``gw_file`` is not used). -* ``plugin02`` is better suited for applications that use point-to-point communication between the same pairs of processes between Cluster and Booster, especially when the number of gateway nodes used is low.. +* ``plugin02`` is better suited for applications that use point-to-point communication between the same pairs of processes between Cluster and Booster, especially when the number of gateway nodes used is low. The plugin file must include the functions associating a gateway node to a cluster node - booster node pair. As an example, the code for ``plugin01`` is reported here: @@ -178,12 +179,14 @@ As an example, the code for ``plugin01`` is reported here: In the case of 2 Cluster nodes, 2 Booster nodes and 2 Gateway nodes, this function results in the following mapping: -Cluster node | Booster node | Gateway node - | | - 0 | 0 | 0 - 1 | 0 | 1 - 0 | 1 | 1 - 1 | 1 | 0 +============ ============ ============ +Cluster node Booster node Gateway node +============ ============ ============ + 0 0 0 + 1 0 1 + 0 1 1 + 1 1 0 +============ ============ ============ -- GitLab