Skip to content

Commit

Permalink
Fixed lesson 9 to point at the right reading
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Greenburg committed Oct 30, 2023
1 parent 4bf5c79 commit b7e7221
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lessons/9.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ In this lesson you'll learn the concepts underpinning multi-node computation and

## Readings and Assignments

[Reading: Distributed Programming and MPI](../readings/openmp.md)
[Reading: Distributed Programming and MPI](../readings/mpi.md)

[Project: MPI](../project/phase7.md) (**start working on this well before the due date**)
2 changes: 1 addition & 1 deletion readings/mpi.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Read [subsections 2.6.3.1-6](EijkhoutHPCTutorialsVol1.pdf#subsection.2.6.3) of E

## MPI

The [Message Passing Interface (MPI)](https://en.wikipedia.org/wiki/Message_Passing_Interface) is an interface for passing data between processes using messages. These processes can be on the same machine or across nodes. All MPI programs being with a call to MPI_Init and end with MPI_Finalize. The MPI functions are defined in mpi.h.
The [Message Passing Interface (MPI)](https://en.wikipedia.org/wiki/Message_Passing_Interface) is an interface for passing data between processes using messages. These processes can be on the same machine or across nodes. All MPI programs being with a call to `MPI_Init` and end with `MPI_Finalize`. The MPI functions are defined in `mpi.h`.

```c++
#include <iostream>
Expand Down

0 comments on commit b7e7221

Please sign in to comment.