Skip to content

Commit 9c192e7

Browse files
authored
Update README.md
1 parent 7b00906 commit 9c192e7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ To scale our $1024 \times 1024$ grid across distributed nodes, we implement **1D
8888

8989
If the global grid size is $NX \times NY$, and we launch the application with $P$ MPI Ranks, the domain is sliced horizontally:
9090

91-
$$\text{local\_nx} = \frac{NX}{P}$$
91+
$\text{local\_nx} = \frac{NX}{P}$
9292

9393
#### Example Distribution ($1024 \times 1024$ Grid across 4 Ranks)
9494
* **Rank 0** : Manages Global Rows $0$ to $255$ ($\text{local\_nx} = 256$)
@@ -117,4 +117,4 @@ Instead of allocating just its active rows, each rank allocates an extended buff
117117
N-1 │ Index N-1 │ 🏠 Last Local Row (Boundary) │ Sent via MPI to Down │
118118
├─────────────┼──────────────────────────────────┼──────────────────────────────┤
119119
N │ Index N │ 👻 Bottom Ghost Row (Halo) │ Received via MPI from Down │
120-
└─────────────┴──────────────────────────────────┴──────────────────────────────┘
120+
└─────────────┴──────────────────────────────────┴──────────────────────────────┘

0 commit comments

Comments
 (0)