Skip to content

Commit c5ced21

Browse files
committed
Update slides
1 parent 33b9599 commit c5ced21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gpu-hip/docs/05-multi-gpu.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ hipError_t hipGetDeviceProperties(struct hipDeviceProp *prop, int device)
8080
* Syncing is handled through message passing (e.g. MPI)
8181
* Many GPUs per process (II)
8282
* Process manages all context switching and syncing explicitly
83-
* One GPU per thread (III, advanced)
83+
* One GPU per thread (III)
8484
* Syncing is handled through thread synchronization requirements
8585
</div>
8686

@@ -102,7 +102,7 @@ hipError_t hipGetDeviceProperties(struct hipDeviceProp *prop, int device)
102102
* Apart from each process selecting a different device, the implementation
103103
looks much like a single-GPU program
104104

105-
# Compling MPI+HIP/OpenMP code
105+
# Compiling MPI+HIP/OpenMP code
106106

107107
* Compiling HIP/OpenMP and MPI calls in the same compilation unit may not always be trivial
108108
* On LUMI, `CC` compiler wrapper takes care of this
@@ -205,7 +205,7 @@ for(int n = 0; n < num_devices; n++) {
205205

206206
# One GPU per thread{.section}
207207

208-
# One GPU per thread (advanced)
208+
# One GPU per thread
209209

210210
* One GPU per CPU thread
211211
* E.g. one OpenMP CPU thread per GPU being used

0 commit comments

Comments
 (0)