CUDA tutorial/fr: Difference between revisions

Jump to navigation Jump to search
Created page with "où blockIdx.x est le numéro unique identifiant un bloc CUDA. De cette manière, chaque bloc CUDA ajoute une valeur de a[ ] à b[ ]. File:Cuda-blocks-parallel.png|thumbnail..."
(Created page with "Ici, nous avons remplacé 1 par N pour que N blocs CUDA différents soient exécutés en même temps. Pour paralléliser cependant, il faut aussi faire des modifications au ''...")
(Created page with "où blockIdx.x est le numéro unique identifiant un bloc CUDA. De cette manière, chaque bloc CUDA ajoute une valeur de a[ ] à b[ ]. File:Cuda-blocks-parallel.png|thumbnail...")
Line 135: Line 135:
   c[blockIdx.x] = a[blockIdx.x] + b[blockIdx.x];
   c[blockIdx.x] = a[blockIdx.x] + b[blockIdx.x];
</syntaxhighlight>
</syntaxhighlight>
where blockIdx.x is the unique number identifying a CUDA block. This way each CUDA block adds a value from a[ ] to b[ ].
blockIdx.x est le numéro unique identifiant un bloc CUDA. De cette manière, chaque bloc CUDA ajoute une valeur de a[ ] à b[ ].
[[File:Cuda-blocks-parallel.png|thumbnail|CUDA blocks-based parallelism. ]]
[[File:Cuda-blocks-parallel.png|thumbnail|Parallélisation basée sur les blocs. ]]


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
cc_staff
1,486

edits

Navigation menu