Skip to content

Commit 3b3113d

Browse files
committed
Emphasise Queue and Pool of Workers
1 parent c6f6524 commit 3b3113d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

multiprocessing/work-distribution/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ the tasks in worker processes, combine the results in the master process.
1212
If needed, figure out also how to deal with any coordinates left out of the
1313
neat uniform-sized chunks.
1414

15-
a) Use a Pool of Workers to distribute the tasks to worker processes.
15+
a) Use a **Pool of Workers** to distribute the tasks to worker processes.
1616
*Hint: if you return also the weight of each chunk, you can process also
1717
non-uniform sized chunks.*
1818

1919
OR
2020

21-
b) Use a Queue to distribute the tasks to worker processes. Store the results
22-
for each chunk in a separate queue.
21+
b) Use a **Queue** to distribute the tasks to worker processes. Store the
22+
results for each chunk in a separate queue.

0 commit comments

Comments
 (0)