Skip to content

Commit

Permalink
Fixed capitalisation of Mpi
Browse files Browse the repository at this point in the history
  • Loading branch information
james-strauss-uwa committed Feb 2, 2022
1 parent 5437a0a commit 36612f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion daliuge-engine/dlg/apps/mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# @brief MPI
# @details An application component using the Message Passing Interface (MPI)
# @par EAGLE_START
# @param category MPI
# @param category Mpi
# @param tag template
# @param[in] param/num_of_procs Num procs//Integer/readwrite/
# \~English Number of processes used for this application
Expand Down
4 changes: 2 additions & 2 deletions tools/xml2palette/xml2palette.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def find_field_by_name(fields, name):


def add_required_fields_for_category(fields, category):
if category in ["DynlibApp", "PythonApp", "Branch", "BashShellApp", "MPI"]:
if category in ["DynlibApp", "PythonApp", "Branch", "BashShellApp", "Mpi"]:
if find_field_by_name(fields, "execution_time") is None:
fields.append(
create_field(
Expand Down Expand Up @@ -220,7 +220,7 @@ def add_required_fields_for_category(fields, category):
False,
)
)
if category in ["File", "Memory", "NGAS", "ParameterSet", "Plasma", "PlasmaFlight", "S3", "MPI"]:
if category in ["File", "Memory", "NGAS", "ParameterSet", "Plasma", "PlasmaFlight", "S3", "Mpi"]:
if find_field_by_name(fields, "group_end") is None:
fields.append(
create_field(
Expand Down

0 comments on commit 36612f9

Please sign in to comment.