Skip to content

Commit 451f178

Browse files
authored
Merge pull request #93 from qianglise/main
update text in parallel-computing.rst
2 parents 6fc5990 + 885d2a7 commit 451f178

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

content/parallel-computing.rst

-4
Original file line numberDiff line numberDiff line change
@@ -429,10 +429,6 @@ Examples
429429
recvbuf = comm.scatter(sendbuf, root=0)
430430
print(f"rank {rank} received message: {recvbuf}")
431431
432-
MPI excels for problems which can be divided up into some sort of subdomains and
433-
communication is required between the subdomains between e.g. timesteps or iterations.
434-
The word-count problem is simpler than that and MPI is somewhat overkill, but in an exercise
435-
below you will learn to use point-to-point communication to parallelize it.
436432
437433
In addition to the lower-case methods :meth:`send`, :meth:`recv`, :meth:`broadcast` etc., there
438434
are also *upper-case* methods :meth:`Send`, :meth:`Recv`, :meth:`Broadcast`. These work with

0 commit comments

Comments
 (0)