Many
Manuals
search
Kategorie
Marki
Strona główna
MATLAB
Oprogramowanie
PARALLEL COMPUTING TOOLBOX - S
Podręcznik Użytkownika
MATLAB PARALLEL COMPUTING TOOLBOX - S Podręcznik Użytkownika Strona 556
Pobierz
Podziel się
Dzielenie się
Dodaj do moich podręczników
Drukuj
Strona
/
656
Spis treści
ROZWIĄZYWANIE PROBLEMÓW
BOOKMARKI
Oceniono
.
/ 5. Na podstawie
oceny klientów
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
11
Functions — Alphabetical List
11-212
B = rand(K,N,P,
'gpuArray'
);
C = pagefun(@mtimes,A,B);
s = size(C)
% returns M-by-N-by-P
s =
300 1000 200
See Also
arrayfun
|
bsxfun
|
gather
|
gpuArray
1
2
...
551
552
553
554
555
556
557
558
559
560
561
...
655
656
Parallel Computing Toolbox™
1
User's Guide
1
How to Contact MathWorks
2
Revision History
3
Contents
5
Program Independent Jobs
11
Program Communicating Jobs
12
GPU Computing
12
Objects — Alphabetical List
14
Functions — Alphabetical List
14
Glossary
14
Getting Started
15
1 Getting Started
16
Partition Large Data Sets
19
Run a Batch Job
22
Run a Batch Parallel Loop
23
Parallel for-Loops (parfor)
29
Introduction to parfor
30
Create a parfor-Loop
32
Create a parfor-Loop
33
2 Parallel for-Loops (parfor)
34
parfor Limitations
39
Using Objects in parfor-Loops
41
Handle Classes
41
Nested Functions
43
Nested Loops
43
Nested spmd Statements
45
Break and Return Statements
45
P-Code Scripts
45
Unambiguous Variable Names
47
Transparency
47
Loop Variable
53
Sliced Variables
55
Broadcast Variables
59
Reduction Variables
60
Reduction Variables
65
Temporary Variables
67
Temporary Variables
69
Improving parfor Performance
70
Improving parfor Performance
71
Parallel Pools
72
Parallel Pools
73
Start a Parallel Pool
73
When to Use spmd
80
Define an spmd Statement
81
Display Output
83
Introduction to Composites
84
Distribute Arrays
88
Create Codistributed Arrays
89
P>> help magic
97
P>> x = pi
97
P>> x = labindex
98
P>> all = numlabs
98
P>> getLocalPart(I)
102
P>> pmode exit
103
Parallel Command Window
104
Click tiling icon
105
Select layout
105
Select vertical
106
Drag to adjust
106
Click tabbed output
107
Select only two tabs
107
Multiple labs
108
Using Graphics in pmode
112
Connectivity Testing
113
Hostname Resolution
113
Socket Connections
113
Introduction
116
Nondistributed Arrays
116
Codistributed Arrays
118
A = zeros(80, 1000);
119
D = codistributed(A)
119
Local Arrays
124
Restoring the Full Array
127
2-Dimensional Distribution
130
Parallelizing a for-Loop
134
plot(1:numDataSets, res);
135
Programming Overview
141
6 Programming Overview
142
Toolbox and Server Components
143
Life Cycle of a Job
147
Parallel Preferences
152
Parallel Preferences
153
Clusters and Cluster Profiles
154
Job Monitor
169
Job Monitor
171
Programming Tips
172
Programming Tips
173
Using the pause Function
175
Interrupting a Job
175
Speeding Up a Job
175
Control Random Number Streams
177
Client and GPU
179
Worker CPU and Worker GPU
181
Profiling Parallel Code
182
Viewing Parallel Profile Data
183
Profiling Parallel Code
185
Benchmarking Performance
191
Troubleshooting and Debugging
192
Caused by:
195
Start Parallel Pool
197
Compare Parallel mapreduce
197
See Also
199
Cluster Preparation
201
Output Format and Order
201
Calculate Mean Delay
201
Related Examples
203
More About
203
7 Program Independent Jobs
212
MJS Cluster
217
Properties
217
Share Code with the Workers
224
Share Code with the Workers
227
Overview
229
Client node
231
MATLAB client
231
Scheduler
231
MATLAB Worker Decode Function
235
Program Communicating Jobs
249
8 Program Communicating Jobs
250
Code in the Client
251
9 GPU Computing
260
Establish Arrays on a GPU
261
Establish Arrays on a GPU
265
100 100
265
Supported MATLAB Code
273
Run CUDA or PTX Code on GPU
278
Create a CUDAKernel Object
279
Run CUDA or PTX Code on GPU
281
Compile a GPU MEX-File
291
Comparison to a CUDA Kernel
291
Constructor
302
Description
302
codistributed
303
Properties
304
Composite
306
CUDAKernel
307
distributed
311
GPUDevice
314
Constructors
319
Container Hierarchy
319
parallel.Cluster
321
HPC Server
322
PBS Pro and TORQUE
322
MJS Jobs
332
CJS Jobs
332
RemoteClusterAccess
341
Examples
344
Input Arguments
346
arrayfun
349
Arguments
352
Create gpuArray False Matrix
430
Create gpuArray Inf Matrix
484
Output Arguments
513
mpiprofile
519
C Syntax
524
Create gpuArray NaN Matrix
549
Create gpuArray Rand Matrix
605
Create gpuArray True Matrix
641
Glossary
653
Glossary-5
655
Komentarze do niniejszej Instrukcji
Brak uwag
Publish
Powiązane produkty i podręczniki dla Oprogramowanie MATLAB PARALLEL COMPUTING TOOLBOX - S
Oprogramowanie MATLAB EMBEDDED IDE LINK 4 - FOR USE WITH TEXAS INSTRUMENTS CODE COMPOSER STUDIO Podręcznik Użytkownika
(112 strony)
Oprogramowanie MATLAB DO QUALIFICATION RELEASE NOTES Instrukcja Użytkownika
(15 strony)
Oprogramowanie MATLAB FINANCIAL DERIVATIVES TOOLBOX Instrukcja Użytkownika
(119 strony)
Oprogramowanie MATLAB SIMEVENTS RELEASE NOTES Podręcznik Użytkownika
(114 strony)
Oprogramowanie MATLAB SIGNAL PROCESSING TOOLBOX 6 Instrukcja Użytkownika
(60 strony)
Oprogramowanie MATLAB SIMULINK VERIFICATION AND VALIDATION - S Podręcznik Użytkownika
(674 strony)
Oprogramowanie MATLAB IMAGE PROCESSING TOOLBOX - RELEASE NOTES Podręcznik Użytkownika
(122 strony)
Oprogramowanie MATLAB SYSTEM IDENTIFICATION TOOLBOX 7 Podręcznik Użytkownika
(531 strony)
Oprogramowanie MATLAB DESIGN HDL CODER RELEASE NOTES Podręcznik Użytkownika
(410 strony)
Oprogramowanie MATLAB POLYSPACE 7 Przewodnik Instalacji
(618 strony)
Oprogramowanie MATLAB PARALLEL COMPUTING TOOLBOX 4 Podręcznik Użytkownika
(128 strony)
Oprogramowanie MATLAB DATABASE TOOLBOX RELEASE NOTES Podręcznik Użytkownika
(684 strony)
Oprogramowanie MATLAB REAL-TIME WORKSHOP 7 - TARGET LANGUAGE COMPILER Instrukcja Użytkownika
(408 strony)
Oprogramowanie MATLAB XPC TARGET 4 - DEVICE DRIVERS Podręcznik Użytkownika
(111 strony)
Oprogramowanie MATLAB GAUGES BLOCKSET RELEASE NOTES Podręcznik Użytkownika
(114 strony)
Oprogramowanie MATLAB EMBEDDED IDE LINK 4 - FOR USE WITH TEXAS INSTRUMENTS CODE COMPOSER STUDIO Dokumentacja
(126 strony)
Oprogramowanie MATLAB SIMULINK 7 - GRAPHICAL USER INTERFACE Dokumentacja
(216 strony)
Oprogramowanie MATLAB REAL-TIME WORKSHOP 7 - TARGET LANGUAGE COMPILER Podręcznik Użytkownika
(386 strony)
Oprogramowanie MATLAB BUILDER EX 1 Podręcznik Użytkownika
(164 strony)
Oprogramowanie MATLAB VIDEO AND IMAGE PROCESSING BLOCKSET 3 Podręcznik Użytkownika
(252 strony)
Drukuj dokument
Drukuj stronę 556
Komentarze do niniejszej Instrukcji