You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -87,7 +87,7 @@ for j in [pdf2textJob, text2wordcloudJob]:
87
87
```
88
88
89
89
90
-
The tools used in the example above can be easily installed in a docker container:
90
+
The tools used in the example above can be easily installed in a Docker container:
91
91
92
92
```
93
93
FROM ubuntu:latest
@@ -98,9 +98,9 @@ RUN apt-get install -y \
98
98
RUN pip install wordcloud
99
99
```
100
100
101
-
## Executing a singularity container
101
+
## Executing a Singularity Container
102
102
103
-
We will run the PDF2Wordcloud example in a container. We will use the docker container described above and execute it with singularity. In this case the spec defines the execution of a container with singularity. The actual command line tool is passed as an optional argument after all required singularity options.
103
+
We will run the PDF2Wordcloud example in a container. We will use the Docker container described above and execute it with singularity. In this case the spec defines the execution of a container with singularity. The actual command line tool is passed as an optional argument after all required singularity options.
104
104
105
105
```
106
106
...
@@ -161,11 +161,11 @@ for j in [make_job(pdf2textSingularitySpec, None), make_job(text2wordcloudSingul
161
161
j.wait()
162
162
```
163
163
164
-
## Executing an MPI job
164
+
## Executing an MPI Job
165
165
166
166
In this example we demonstrate how to wrap and execute an mpi hello world job with PSI/J. The base mpi command is `mpiexec -n 36 -ppn 36 echo Hello world`. This example is introducing the concept of a [job launcher](https://exaworks.org/psij-python/docs/programming.html#launchers), in this case **mpi**, e.g. `job.spec.launcher = "mpirun"`. The complete example script can be found [here](./).
167
167
168
-
1. Load psij module and instantiate job executer, e.g. local or slurm
168
+
1. Load psij module and instantiate job executer, e.g. local or Slurm
0 commit comments