File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 31
31
ompi_data = dict ()
32
32
for ompi_line in ompi_lines :
33
33
if '#' in ompi_line :
34
- ompi_line , _ = ompi_line .split ("#" )
34
+ parts = ompi_line .split ("#" )
35
+ ompi_line = parts [0 ]
35
36
ompi_line = ompi_line .strip ()
36
37
37
38
if '=' not in ompi_line :
Original file line number Diff line number Diff line change @@ -14,11 +14,10 @@ order to build the best MPI library available. Open MPI offers
14
14
advantages for system and software vendors, application developers and
15
15
computer science researchers.
16
16
17
- Other documentation
18
- ===================
17
+ Documentation locations
18
+ =======================
19
19
20
- Documentation for other versions of Open can be found in the following
21
- locations:
20
+ Documentation for Open can be found in the following locations:
22
21
23
22
.. list-table ::
24
23
:header-rows: 1
@@ -28,7 +27,8 @@ locations:
28
27
29
28
* - v5.0.0 and later
30
29
- Open MPI documentation has consolidated and moved to
31
- ReadTheDocs.io.
30
+
31
+ https://docs.open-mpi.org/.
32
32
33
33
This particular documentation is for |ompi_ver |; use the
34
34
selector in the
You can’t perform that action at this time.
0 commit comments