-
-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathmultiprocessing.po
More file actions
5080 lines (4461 loc) · 165 KB
/
multiprocessing.po
File metadata and controls
5080 lines (4461 loc) · 165 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-04-20 00:26+0000\n"
"PO-Revision-Date: 2018-05-23 16:06+0000\n"
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
"tw)\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../../library/multiprocessing.rst:2
msgid ":mod:`!multiprocessing` --- Process-based parallelism"
msgstr ":mod:`!multiprocessing` --- 以行程為基礎的平行性"
#: ../../library/multiprocessing.rst:7
msgid "**Source code:** :source:`Lib/multiprocessing/`"
msgstr "**原始碼:**\\ :source:`Lib/multiprocessing/`"
#: ../../includes/wasm-mobile-notavail.rst:3
msgid "Availability"
msgstr "可用性"
#: ../../includes/wasm-mobile-notavail.rst:5
msgid ""
"This module is not supported on :ref:`mobile platforms <mobile-"
"availability>` or :ref:`WebAssembly platforms <wasm-availability>`."
msgstr ""
"此模組在\\ :ref:`行動平台 <mobile-availability>`\\ 或 :ref:`WebAssembly 平台 "
"<wasm-availability>`\\ 上不支援。"
#: ../../library/multiprocessing.rst:14
msgid "Introduction"
msgstr "簡介"
#: ../../library/multiprocessing.rst:16
msgid ""
":mod:`!multiprocessing` is a package that supports spawning processes using "
"an API similar to the :mod:`threading` module. The :mod:`!multiprocessing` "
"package offers both local and remote concurrency, effectively side-stepping "
"the :term:`Global Interpreter Lock <global interpreter lock>` by using "
"subprocesses instead of threads. Due to this, the :mod:`!multiprocessing` "
"module allows the programmer to fully leverage multiple processors on a "
"given machine. It runs on both POSIX and Windows."
msgstr ""
#: ../../library/multiprocessing.rst:25
msgid ""
"The :mod:`!multiprocessing` module also introduces the :class:"
"`~multiprocessing.pool.Pool` object which offers a convenient means of "
"parallelizing the execution of a function across multiple input values, "
"distributing the input data across processes (data parallelism). The "
"following example demonstrates the common practice of defining such "
"functions in a module so that child processes can successfully import that "
"module. This basic example of data parallelism using :class:"
"`~multiprocessing.pool.Pool`, ::"
msgstr ""
#: ../../library/multiprocessing.rst:33
msgid ""
"from multiprocessing import Pool\n"
"\n"
"def f(x):\n"
" return x*x\n"
"\n"
"if __name__ == '__main__':\n"
" with Pool(5) as p:\n"
" print(p.map(f, [1, 2, 3]))"
msgstr ""
"from multiprocessing import Pool\n"
"\n"
"def f(x):\n"
" return x*x\n"
"\n"
"if __name__ == '__main__':\n"
" with Pool(5) as p:\n"
" print(p.map(f, [1, 2, 3]))"
#: ../../library/multiprocessing.rst:42
msgid "will print to standard output ::"
msgstr ""
#: ../../library/multiprocessing.rst:44
msgid "[1, 4, 9]"
msgstr "[1, 4, 9]"
#: ../../library/multiprocessing.rst:46
msgid ""
"The :mod:`!multiprocessing` module also introduces APIs which do not have "
"analogs in the :mod:`threading` module, like the ability to :meth:`terminate "
"<Process.terminate>`, :meth:`interrupt <Process.interrupt>` or :meth:`kill "
"<Process.kill>` a running process."
msgstr ""
#: ../../library/multiprocessing.rst:53
msgid ""
":class:`concurrent.futures.ProcessPoolExecutor` offers a higher level "
"interface to push tasks to a background process without blocking execution "
"of the calling process. Compared to using the :class:`~multiprocessing.pool."
"Pool` interface directly, the :mod:`concurrent.futures` API more readily "
"allows the submission of work to the underlying process pool to be separated "
"from waiting for the results."
msgstr ""
#: ../../library/multiprocessing.rst:62
msgid "The :class:`Process` class"
msgstr ":class:`Process` 類別"
#: ../../library/multiprocessing.rst:64
msgid ""
"In :mod:`!multiprocessing`, processes are spawned by creating a :class:"
"`Process` object and then calling its :meth:`~Process.start` method. :class:"
"`Process` follows the API of :class:`threading.Thread`. A trivial example "
"of a multiprocess program is ::"
msgstr ""
#: ../../library/multiprocessing.rst:69
msgid ""
"from multiprocessing import Process\n"
"\n"
"def f(name):\n"
" print('hello', name)\n"
"\n"
"if __name__ == '__main__':\n"
" p = Process(target=f, args=('bob',))\n"
" p.start()\n"
" p.join()"
msgstr ""
"from multiprocessing import Process\n"
"\n"
"def f(name):\n"
" print('hello', name)\n"
"\n"
"if __name__ == '__main__':\n"
" p = Process(target=f, args=('bob',))\n"
" p.start()\n"
" p.join()"
#: ../../library/multiprocessing.rst:79
msgid ""
"To show the individual process IDs involved, here is an expanded example::"
msgstr ""
#: ../../library/multiprocessing.rst:81
msgid ""
"from multiprocessing import Process\n"
"import os\n"
"\n"
"def info(title):\n"
" print(title)\n"
" print('module name:', __name__)\n"
" print('parent process:', os.getppid())\n"
" print('process id:', os.getpid())\n"
"\n"
"def f(name):\n"
" info('function f')\n"
" print('hello', name)\n"
"\n"
"if __name__ == '__main__':\n"
" info('main line')\n"
" p = Process(target=f, args=('bob',))\n"
" p.start()\n"
" p.join()"
msgstr ""
"from multiprocessing import Process\n"
"import os\n"
"\n"
"def info(title):\n"
" print(title)\n"
" print('module name:', __name__)\n"
" print('parent process:', os.getppid())\n"
" print('process id:', os.getpid())\n"
"\n"
"def f(name):\n"
" info('function f')\n"
" print('hello', name)\n"
"\n"
"if __name__ == '__main__':\n"
" info('main line')\n"
" p = Process(target=f, args=('bob',))\n"
" p.start()\n"
" p.join()"
#: ../../library/multiprocessing.rst:100
msgid ""
"For an explanation of why the ``if __name__ == '__main__'`` part is "
"necessary, see :ref:`multiprocessing-programming`."
msgstr ""
#: ../../library/multiprocessing.rst:103
msgid ""
"The arguments to :class:`Process` usually need to be unpickleable from "
"within the child process. If you tried typing the above example directly "
"into a REPL it could lead to an :exc:`AttributeError` in the child process "
"trying to locate the *f* function in the ``__main__`` module."
msgstr ""
#: ../../library/multiprocessing.rst:112
msgid "Contexts and start methods"
msgstr ""
#: ../../library/multiprocessing.rst:114
msgid ""
"Depending on the platform, :mod:`!multiprocessing` supports three ways to "
"start a process. These *start methods* are"
msgstr ""
#: ../../library/multiprocessing.rst:119
msgid "*spawn*"
msgstr "*spawn*"
#: ../../library/multiprocessing.rst:120
msgid ""
"The parent process starts a fresh Python interpreter process. The child "
"process will only inherit those resources necessary to run the process "
"object's :meth:`~Process.run` method. In particular, unnecessary file "
"descriptors and handles from the parent process will not be inherited. "
"Starting a process using this method is rather slow compared to using *fork* "
"or *forkserver*."
msgstr ""
#: ../../library/multiprocessing.rst:127
msgid ""
"Available on POSIX and Windows platforms. The default on Windows and macOS."
msgstr ""
#: ../../library/multiprocessing.rst:131
msgid "*fork*"
msgstr "*fork*"
#: ../../library/multiprocessing.rst:132
msgid ""
"The parent process uses :func:`os.fork` to fork the Python interpreter. The "
"child process, when it begins, is effectively identical to the parent "
"process. All resources of the parent are inherited by the child process. "
"Note that safely forking a multithreaded process is problematic."
msgstr ""
#: ../../library/multiprocessing.rst:138
msgid "Available on POSIX systems."
msgstr ""
#: ../../library/multiprocessing.rst:140
msgid ""
"This is no longer the default start method on any platform. Code that "
"requires *fork* must explicitly specify that via :func:`get_context` or :"
"func:`set_start_method`."
msgstr ""
#: ../../library/multiprocessing.rst:145
msgid ""
"If Python is able to detect that your process has multiple threads, the :"
"func:`os.fork` function that this start method calls internally will raise "
"a :exc:`DeprecationWarning`. Use a different start method. See the :func:`os."
"fork` documentation for further explanation."
msgstr ""
#: ../../library/multiprocessing.rst:153
msgid "*forkserver*"
msgstr "*forkserver*"
#: ../../library/multiprocessing.rst:154
msgid ""
"When the program starts and selects the *forkserver* start method, a server "
"process is spawned. From then on, whenever a new process is needed, the "
"parent process connects to the server and requests that it fork a new "
"process. The fork server process is single threaded unless system libraries "
"or preloaded imports spawn threads as a side-effect so it is generally safe "
"for it to use :func:`os.fork`. No unnecessary resources are inherited."
msgstr ""
#: ../../library/multiprocessing.rst:162
msgid ""
"Available on POSIX platforms which support passing file descriptors over "
"Unix pipes such as Linux. The default on those."
msgstr ""
#: ../../library/multiprocessing.rst:165
msgid "This became the default start method on POSIX platforms."
msgstr ""
#: ../../library/multiprocessing.rst:168
msgid ""
"*spawn* added on all POSIX platforms, and *forkserver* added for some POSIX "
"platforms. Child processes no longer inherit all of the parents inheritable "
"handles on Windows."
msgstr ""
#: ../../library/multiprocessing.rst:176
msgid ""
"On macOS, the *spawn* start method is now the default. The *fork* start "
"method should be considered unsafe as it can lead to crashes of the "
"subprocess as macOS system libraries may start threads. See :issue:`33725`."
msgstr ""
#: ../../library/multiprocessing.rst:182
msgid ""
"On POSIX platforms the default start method was changed from *fork* to "
"*forkserver* to retain the performance but avoid common multithreaded "
"process incompatibilities. See :gh:`84559`."
msgstr ""
#: ../../library/multiprocessing.rst:187
msgid ""
"On POSIX using the *spawn* or *forkserver* start methods will also start a "
"*resource tracker* process which tracks the unlinked named system resources "
"(such as named semaphores or :class:`~multiprocessing.shared_memory."
"SharedMemory` objects) created by processes of the program. When all "
"processes have exited the resource tracker unlinks any remaining tracked "
"object. Usually there should be none, but if a process was killed by a "
"signal there may be some \"leaked\" resources. (Neither leaked semaphores "
"nor shared memory segments will be automatically unlinked until the next "
"reboot. This is problematic for both objects because the system allows only "
"a limited number of named semaphores, and shared memory segments occupy some "
"space in the main memory.)"
msgstr ""
#: ../../library/multiprocessing.rst:200
msgid ""
"To select a start method you use the :func:`set_start_method` in the ``if "
"__name__ == '__main__'`` clause of the main module. For example::"
msgstr ""
#: ../../library/multiprocessing.rst:204
msgid ""
"import multiprocessing as mp\n"
"\n"
"def foo(q):\n"
" q.put('hello')\n"
"\n"
"if __name__ == '__main__':\n"
" mp.set_start_method('spawn')\n"
" q = mp.Queue()\n"
" p = mp.Process(target=foo, args=(q,))\n"
" p.start()\n"
" print(q.get())\n"
" p.join()"
msgstr ""
"import multiprocessing as mp\n"
"\n"
"def foo(q):\n"
" q.put('hello')\n"
"\n"
"if __name__ == '__main__':\n"
" mp.set_start_method('spawn')\n"
" q = mp.Queue()\n"
" p = mp.Process(target=foo, args=(q,))\n"
" p.start()\n"
" print(q.get())\n"
" p.join()"
#: ../../library/multiprocessing.rst:217
msgid ""
":func:`set_start_method` should not be used more than once in the program."
msgstr ""
#: ../../library/multiprocessing.rst:220
msgid ""
"Alternatively, you can use :func:`get_context` to obtain a context object. "
"Context objects have the same API as the multiprocessing module, and allow "
"one to use multiple start methods in the same program. ::"
msgstr ""
#: ../../library/multiprocessing.rst:225
msgid ""
"import multiprocessing as mp\n"
"\n"
"def foo(q):\n"
" q.put('hello')\n"
"\n"
"if __name__ == '__main__':\n"
" ctx = mp.get_context('spawn')\n"
" q = ctx.Queue()\n"
" p = ctx.Process(target=foo, args=(q,))\n"
" p.start()\n"
" print(q.get())\n"
" p.join()"
msgstr ""
"import multiprocessing as mp\n"
"\n"
"def foo(q):\n"
" q.put('hello')\n"
"\n"
"if __name__ == '__main__':\n"
" ctx = mp.get_context('spawn')\n"
" q = ctx.Queue()\n"
" p = ctx.Process(target=foo, args=(q,))\n"
" p.start()\n"
" print(q.get())\n"
" p.join()"
#: ../../library/multiprocessing.rst:238
msgid ""
"Note that objects related to one context may not be compatible with "
"processes for a different context. In particular, locks created using the "
"*fork* context cannot be passed to processes started using the *spawn* or "
"*forkserver* start methods."
msgstr ""
#: ../../library/multiprocessing.rst:243
msgid ""
"Libraries using :mod:`!multiprocessing` or :class:`~concurrent.futures."
"ProcessPoolExecutor` should be designed to allow their users to provide "
"their own multiprocessing context. Using a specific context of your own "
"within a library can lead to incompatibilities with the rest of the library "
"user's application. Always document if your library requires a specific "
"start method."
msgstr ""
#: ../../library/multiprocessing.rst:252
msgid ""
"The ``'spawn'`` and ``'forkserver'`` start methods generally cannot be used "
"with \"frozen\" executables (i.e., binaries produced by packages like "
"**PyInstaller** and **cx_Freeze**) on POSIX systems. The ``'fork'`` start "
"method may work if code does not use threads."
msgstr ""
#: ../../library/multiprocessing.rst:259
msgid "Exchanging objects between processes"
msgstr ""
#: ../../library/multiprocessing.rst:261
msgid ""
":mod:`!multiprocessing` supports two types of communication channel between "
"processes:"
msgstr ""
#: ../../library/multiprocessing.rst:264
msgid "**Queues**"
msgstr ""
#: ../../library/multiprocessing.rst:266
msgid ""
"The :class:`Queue` class is a near clone of :class:`queue.Queue`. For "
"example::"
msgstr ""
#: ../../library/multiprocessing.rst:269
msgid ""
"from multiprocessing import Process, Queue\n"
"\n"
"def f(q):\n"
" q.put([42, None, 'hello'])\n"
"\n"
"if __name__ == '__main__':\n"
" q = Queue()\n"
" p = Process(target=f, args=(q,))\n"
" p.start()\n"
" print(q.get()) # prints \"[42, None, 'hello']\"\n"
" p.join()"
msgstr ""
"from multiprocessing import Process, Queue\n"
"\n"
"def f(q):\n"
" q.put([42, None, 'hello'])\n"
"\n"
"if __name__ == '__main__':\n"
" q = Queue()\n"
" p = Process(target=f, args=(q,))\n"
" p.start()\n"
" print(q.get()) # 印出 \"[42, None, 'hello']\"\n"
" p.join()"
#: ../../library/multiprocessing.rst:281
msgid ""
"Queues are thread and process safe. Any object put into a :mod:`!"
"multiprocessing` queue will be serialized."
msgstr ""
#: ../../library/multiprocessing.rst:284
msgid "**Pipes**"
msgstr ""
#: ../../library/multiprocessing.rst:286
msgid ""
"The :func:`Pipe` function returns a pair of connection objects connected by "
"a pipe which by default is duplex (two-way). For example::"
msgstr ""
#: ../../library/multiprocessing.rst:289
msgid ""
"from multiprocessing import Process, Pipe\n"
"\n"
"def f(conn):\n"
" conn.send([42, None, 'hello'])\n"
" conn.close()\n"
"\n"
"if __name__ == '__main__':\n"
" parent_conn, child_conn = Pipe()\n"
" p = Process(target=f, args=(child_conn,))\n"
" p.start()\n"
" print(parent_conn.recv()) # prints \"[42, None, 'hello']\"\n"
" p.join()"
msgstr ""
"from multiprocessing import Process, Pipe\n"
"\n"
"def f(conn):\n"
" conn.send([42, None, 'hello'])\n"
" conn.close()\n"
"\n"
"if __name__ == '__main__':\n"
" parent_conn, child_conn = Pipe()\n"
" p = Process(target=f, args=(child_conn,))\n"
" p.start()\n"
" print(parent_conn.recv()) # 印出 \"[42, None, 'hello']\"\n"
" p.join()"
#: ../../library/multiprocessing.rst:302
msgid ""
"The two connection objects returned by :func:`Pipe` represent the two ends "
"of the pipe. Each connection object has :meth:`~Connection.send` and :meth:"
"`~Connection.recv` methods (among others). Note that data in a pipe may "
"become corrupted if two processes (or threads) try to read from or write to "
"the *same* end of the pipe at the same time. Of course there is no risk of "
"corruption from processes using different ends of the pipe at the same time."
msgstr ""
#: ../../library/multiprocessing.rst:310
msgid ""
"The :meth:`~Connection.send` method serializes the object and :meth:"
"`~Connection.recv` re-creates the object."
msgstr ""
#: ../../library/multiprocessing.rst:314
msgid "Synchronization between processes"
msgstr ""
#: ../../library/multiprocessing.rst:316
msgid ""
":mod:`!multiprocessing` contains equivalents of all the synchronization "
"primitives from :mod:`threading`. For instance one can use a lock to ensure "
"that only one process prints to standard output at a time::"
msgstr ""
#: ../../library/multiprocessing.rst:320
msgid ""
"from multiprocessing import Process, Lock\n"
"\n"
"def f(l, i):\n"
" l.acquire()\n"
" try:\n"
" print('hello world', i)\n"
" finally:\n"
" l.release()\n"
"\n"
"if __name__ == '__main__':\n"
" lock = Lock()\n"
"\n"
" for num in range(10):\n"
" Process(target=f, args=(lock, num)).start()"
msgstr ""
"from multiprocessing import Process, Lock\n"
"\n"
"def f(l, i):\n"
" l.acquire()\n"
" try:\n"
" print('hello world', i)\n"
" finally:\n"
" l.release()\n"
"\n"
"if __name__ == '__main__':\n"
" lock = Lock()\n"
"\n"
" for num in range(10):\n"
" Process(target=f, args=(lock, num)).start()"
#: ../../library/multiprocessing.rst:335
msgid ""
"Without using the lock output from the different processes is liable to get "
"all mixed up."
msgstr ""
#: ../../library/multiprocessing.rst:340
msgid "Sharing state between processes"
msgstr ""
#: ../../library/multiprocessing.rst:342
msgid ""
"As mentioned above, when doing concurrent programming it is usually best to "
"avoid using shared state as far as possible. This is particularly true when "
"using multiple processes."
msgstr ""
#: ../../library/multiprocessing.rst:346
msgid ""
"However, if you really do need to use some shared data then :mod:`!"
"multiprocessing` provides a couple of ways of doing so."
msgstr ""
#: ../../library/multiprocessing.rst:349
msgid "**Shared memory**"
msgstr ""
#: ../../library/multiprocessing.rst:351
msgid ""
"Data can be stored in a shared memory map using :class:`Value` or :class:"
"`Array`. For example, the following code ::"
msgstr ""
#: ../../library/multiprocessing.rst:354
msgid ""
"from multiprocessing import Process, Value, Array\n"
"\n"
"def f(n, a):\n"
" n.value = 3.1415927\n"
" for i in range(len(a)):\n"
" a[i] = -a[i]\n"
"\n"
"if __name__ == '__main__':\n"
" num = Value('d', 0.0)\n"
" arr = Array('i', range(10))\n"
"\n"
" p = Process(target=f, args=(num, arr))\n"
" p.start()\n"
" p.join()\n"
"\n"
" print(num.value)\n"
" print(arr[:])"
msgstr ""
"from multiprocessing import Process, Value, Array\n"
"\n"
"def f(n, a):\n"
" n.value = 3.1415927\n"
" for i in range(len(a)):\n"
" a[i] = -a[i]\n"
"\n"
"if __name__ == '__main__':\n"
" num = Value('d', 0.0)\n"
" arr = Array('i', range(10))\n"
"\n"
" p = Process(target=f, args=(num, arr))\n"
" p.start()\n"
" p.join()\n"
"\n"
" print(num.value)\n"
" print(arr[:])"
#: ../../library/multiprocessing.rst:372 ../../library/multiprocessing.rst:422
msgid "will print ::"
msgstr ""
#: ../../library/multiprocessing.rst:374
msgid ""
"3.1415927\n"
"[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]"
msgstr ""
"3.1415927\n"
"[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]"
#: ../../library/multiprocessing.rst:377
msgid ""
"The ``'d'`` and ``'i'`` arguments used when creating ``num`` and ``arr`` are "
"typecodes of the kind used by the :mod:`array` module: ``'d'`` indicates a "
"double precision float and ``'i'`` indicates a signed integer. These shared "
"objects will be process and thread-safe."
msgstr ""
#: ../../library/multiprocessing.rst:382
msgid ""
"For more flexibility in using shared memory one can use the :mod:"
"`multiprocessing.sharedctypes` module which supports the creation of "
"arbitrary ctypes objects allocated from shared memory."
msgstr ""
#: ../../library/multiprocessing.rst:386
msgid "**Server process**"
msgstr ""
#: ../../library/multiprocessing.rst:388
msgid ""
"A manager object returned by :func:`Manager` controls a server process which "
"holds Python objects and allows other processes to manipulate them using "
"proxies."
msgstr ""
#: ../../library/multiprocessing.rst:392
msgid ""
"A manager returned by :func:`Manager` will support types :class:`list`, :"
"class:`dict`, :class:`set`, :class:`~managers.Namespace`, :class:`Lock`, :"
"class:`RLock`, :class:`Semaphore`, :class:`BoundedSemaphore`, :class:"
"`Condition`, :class:`Event`, :class:`Barrier`, :class:`Queue`, :class:"
"`Value` and :class:`Array`. For example, ::"
msgstr ""
#: ../../library/multiprocessing.rst:398
msgid ""
"from multiprocessing import Process, Manager\n"
"\n"
"def f(d, l, s):\n"
" d[1] = '1'\n"
" d['2'] = 2\n"
" d[0.25] = None\n"
" l.reverse()\n"
" s.add('a')\n"
" s.add('b')\n"
"\n"
"if __name__ == '__main__':\n"
" with Manager() as manager:\n"
" d = manager.dict()\n"
" l = manager.list(range(10))\n"
" s = manager.set()\n"
"\n"
" p = Process(target=f, args=(d, l, s))\n"
" p.start()\n"
" p.join()\n"
"\n"
" print(d)\n"
" print(l)\n"
" print(s)"
msgstr ""
"from multiprocessing import Process, Manager\n"
"\n"
"def f(d, l, s):\n"
" d[1] = '1'\n"
" d['2'] = 2\n"
" d[0.25] = None\n"
" l.reverse()\n"
" s.add('a')\n"
" s.add('b')\n"
"\n"
"if __name__ == '__main__':\n"
" with Manager() as manager:\n"
" d = manager.dict()\n"
" l = manager.list(range(10))\n"
" s = manager.set()\n"
"\n"
" p = Process(target=f, args=(d, l, s))\n"
" p.start()\n"
" p.join()\n"
"\n"
" print(d)\n"
" print(l)\n"
" print(s)"
#: ../../library/multiprocessing.rst:424
msgid ""
"{0.25: None, 1: '1', '2': 2}\n"
"[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]\n"
"{'a', 'b'}"
msgstr ""
"{0.25: None, 1: '1', '2': 2}\n"
"[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]\n"
"{'a', 'b'}"
#: ../../library/multiprocessing.rst:428
msgid ""
"Server process managers are more flexible than using shared memory objects "
"because they can be made to support arbitrary object types. Also, a single "
"manager can be shared by processes on different computers over a network. "
"They are, however, slower than using shared memory."
msgstr ""
#: ../../library/multiprocessing.rst:435
msgid "Using a pool of workers"
msgstr ""
#: ../../library/multiprocessing.rst:437
msgid ""
"The :class:`~multiprocessing.pool.Pool` class represents a pool of worker "
"processes. It has methods which allows tasks to be offloaded to the worker "
"processes in a few different ways."
msgstr ""
#: ../../library/multiprocessing.rst:441
msgid "For example::"
msgstr "舉例來說: ::"
#: ../../library/multiprocessing.rst:443
msgid ""
"from multiprocessing import Pool, TimeoutError\n"
"import time\n"
"import os\n"
"\n"
"def f(x):\n"
" return x*x\n"
"\n"
"if __name__ == '__main__':\n"
" # start 4 worker processes\n"
" with Pool(processes=4) as pool:\n"
"\n"
" # print \"[0, 1, 4,..., 81]\"\n"
" print(pool.map(f, range(10)))\n"
"\n"
" # print same numbers in arbitrary order\n"
" for i in pool.imap_unordered(f, range(10)):\n"
" print(i)\n"
"\n"
" # evaluate \"f(20)\" asynchronously\n"
" res = pool.apply_async(f, (20,)) # runs in *only* one process\n"
" print(res.get(timeout=1)) # prints \"400\"\n"
"\n"
" # evaluate \"os.getpid()\" asynchronously\n"
" res = pool.apply_async(os.getpid, ()) # runs in *only* one process\n"
" print(res.get(timeout=1)) # prints the PID of that "
"process\n"
"\n"
" # launching multiple evaluations asynchronously *may* use more "
"processes\n"
" multiple_results = [pool.apply_async(os.getpid, ()) for i in "
"range(4)]\n"
" print([res.get(timeout=1) for res in multiple_results])\n"
"\n"
" # make a single worker sleep for 10 seconds\n"
" res = pool.apply_async(time.sleep, (10,))\n"
" try:\n"
" print(res.get(timeout=1))\n"
" except TimeoutError:\n"
" print(\"We lacked patience and got a multiprocessing."
"TimeoutError\")\n"
"\n"
" print(\"For the moment, the pool remains available for more work\")\n"
"\n"
" # exiting the 'with'-block has stopped the pool\n"
" print(\"Now the pool is closed and no longer available\")"
msgstr ""
#: ../../library/multiprocessing.rst:485
msgid ""
"Note that the methods of a pool should only ever be used by the process "
"which created it."
msgstr ""
#: ../../library/multiprocessing.rst:490
msgid ""
"Functionality within this package requires that the ``__main__`` module be "
"importable by the children. This is covered in :ref:`multiprocessing-"
"programming` however it is worth pointing out here. This means that some "
"examples, such as the :class:`multiprocessing.pool.Pool` examples will not "
"work in the interactive interpreter. For example::"
msgstr ""
#: ../../library/multiprocessing.rst:496
msgid ""
">>> from multiprocessing import Pool\n"
">>> p = Pool(5)\n"
">>> def f(x):\n"
"... return x*x\n"
"...\n"
">>> with p:\n"
"... p.map(f, [1,2,3])\n"
"Process PoolWorker-1:\n"
"Process PoolWorker-2:\n"
"Process PoolWorker-3:\n"
"Traceback (most recent call last):\n"
"Traceback (most recent call last):\n"
"Traceback (most recent call last):\n"
"AttributeError: Can't get attribute 'f' on <module '__main__' (<class "
"'_frozen_importlib.BuiltinImporter'>)>\n"
"AttributeError: Can't get attribute 'f' on <module '__main__' (<class "
"'_frozen_importlib.BuiltinImporter'>)>\n"
"AttributeError: Can't get attribute 'f' on <module '__main__' (<class "
"'_frozen_importlib.BuiltinImporter'>)>"
msgstr ""
">>> from multiprocessing import Pool\n"
">>> p = Pool(5)\n"
">>> def f(x):\n"
"... return x*x\n"
"...\n"
">>> with p:\n"
"... p.map(f, [1,2,3])\n"
"Process PoolWorker-1:\n"
"Process PoolWorker-2:\n"
"Process PoolWorker-3:\n"
"Traceback (most recent call last):\n"
"Traceback (most recent call last):\n"
"Traceback (most recent call last):\n"
"AttributeError: Can't get attribute 'f' on <module '__main__' (<class "
"'_frozen_importlib.BuiltinImporter'>)>\n"
"AttributeError: Can't get attribute 'f' on <module '__main__' (<class "
"'_frozen_importlib.BuiltinImporter'>)>\n"
"AttributeError: Can't get attribute 'f' on <module '__main__' (<class "
"'_frozen_importlib.BuiltinImporter'>)>"
#: ../../library/multiprocessing.rst:513
msgid ""
"(If you try this it will actually output three full tracebacks interleaved "
"in a semi-random fashion, and then you may have to stop the parent process "
"somehow.)"
msgstr ""
#: ../../library/multiprocessing.rst:519
msgid "Reference"
msgstr ""
#: ../../library/multiprocessing.rst:521
msgid ""
"The :mod:`!multiprocessing` package mostly replicates the API of the :mod:"
"`threading` module."
msgstr ""
#: ../../library/multiprocessing.rst:527
msgid "Global start method"
msgstr ""
#: ../../library/multiprocessing.rst:529
msgid ""
"Python supports several ways to create and initialize a process. The global "
"start method sets the default mechanism for creating a process."
msgstr ""
#: ../../library/multiprocessing.rst:532
msgid ""
"Several multiprocessing functions and methods that may also instantiate "
"certain objects will implicitly set the global start method to the system's "
"default, if it hasn’t been set already. The global start method can only be "
"set once. If you need to change the start method from the system default, "
"you must proactively set the global start method before calling functions or "
"methods, or creating these objects."
msgstr ""
#: ../../library/multiprocessing.rst:541
msgid ":class:`Process` and exceptions"
msgstr ":class:`Process` 與例外"
#: ../../library/multiprocessing.rst:546
msgid ""
"Process objects represent activity that is run in a separate process. The :"
"class:`Process` class has equivalents of all the methods of :class:"
"`threading.Thread`."
msgstr ""
#: ../../library/multiprocessing.rst:550
msgid ""
"The constructor should always be called with keyword arguments. *group* "
"should always be ``None``; it exists solely for compatibility with :class:"
"`threading.Thread`. *target* is the callable object to be invoked by the :"
"meth:`run` method. It defaults to ``None``, meaning nothing is called. "
"*name* is the process name (see :attr:`name` for more details). *args* is "
"the argument tuple for the target invocation. *kwargs* is a dictionary of "
"keyword arguments for the target invocation. If provided, the keyword-only "
"*daemon* argument sets the process :attr:`daemon` flag to ``True`` or "
"``False``. If ``None`` (the default), this flag will be inherited from the "
"creating process."
msgstr ""
#: ../../library/multiprocessing.rst:561
msgid ""
"By default, no arguments are passed to *target*. The *args* argument, which "
"defaults to ``()``, can be used to specify a list or tuple of the arguments "
"to pass to *target*."
msgstr ""
#: ../../library/multiprocessing.rst:565
msgid ""
"If a subclass overrides the constructor, it must make sure it invokes the "
"base class constructor (``super().__init__()``) before doing anything else "
"to the process."
msgstr ""
#: ../../library/multiprocessing.rst:571
msgid ""
"In general, all arguments to :class:`Process` must be picklable. This is "
"frequently observed when trying to create a :class:`Process` or use a :class:"
"`concurrent.futures.ProcessPoolExecutor` from a REPL with a locally defined "
"*target* function."
msgstr ""
#: ../../library/multiprocessing.rst:576
msgid ""
"Passing a callable object defined in the current REPL session causes the "
"child process to die via an uncaught :exc:`AttributeError` exception when "
"starting as *target* must have been defined within an importable module in "
"order to be loaded during unpickling."
msgstr ""
#: ../../library/multiprocessing.rst:581
msgid "Example of this uncatchable error from the child::"
msgstr ""
#: ../../library/multiprocessing.rst:583
msgid ""
">>> import multiprocessing as mp\n"
">>> def knigit():\n"
"... print(\"Ni!\")\n"
"...\n"
">>> process = mp.Process(target=knigit)\n"
">>> process.start()\n"
">>> Traceback (most recent call last):\n"
" File \".../multiprocessing/spawn.py\", line ..., in spawn_main\n"
" File \".../multiprocessing/spawn.py\", line ..., in _main\n"
"AttributeError: module '__main__' has no attribute 'knigit'\n"
">>> process\n"
"<SpawnProcess name='SpawnProcess-1' pid=379473 parent=378707 stopped "
"exitcode=1>"
msgstr ""
">>> import multiprocessing as mp\n"
">>> def knigit():\n"
"... print(\"Ni!\")\n"
"...\n"
">>> process = mp.Process(target=knigit)\n"
">>> process.start()\n"
">>> Traceback (most recent call last):\n"