Reduce3

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:28 AM on 3/3/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

1

__global__ void reduce3(float in, float out, int n) {

2
New cards
<p>2</p>

2

extern __shared__ float sdata[];

3
New cards
<p>3</p>

3

unsigned int tid = threadIdx.x;

4
New cards
<p>4</p>

4

unsigned int i = blockIdx.x * (blockDim.x * 2) + threadIdx.x;

5
New cards
<p>5</p>

5

float sum = (i < n) ? in[i] : 0;

6
New cards
<p>6</p>

6

if (i + blockDim.x < n) sum += in[i + blockDim.x];

7
New cards
<p>7</p>

7

sdata[tid] = sum;

8
New cards
<p>8</p>

8

__syncthreads();

9
New cards
<p>9</p>

9

for (unsigned int s = blockDim.x / 2; s > 0; s >>= 1) {

10
New cards
<p>10</p>

10

if (tid < s) {

11
New cards
<p>11</p>

11

sdata[tid] += sdata[tid + s];

}

12
New cards
<p>12</p>

12

__syncthreads();

}

13
New cards
<p>13</p>

13

if (tid == 0) out[blockIdx.x] = sdata[0];

Explore top notes

note
circulatory system
Updated 156d ago
0.0(0)
note
GI
Updated 311d ago
0.0(0)
note
BLOC POLITICS AND CUBAN CRISIS
Updated 1355d ago
0.0(0)
note
Bio-4_Tour of the Cell
Updated 176d ago
0.0(0)
note
Chapters 7: Periodic Trends
Updated 483d ago
0.0(0)
note
circulatory system
Updated 156d ago
0.0(0)
note
GI
Updated 311d ago
0.0(0)
note
BLOC POLITICS AND CUBAN CRISIS
Updated 1355d ago
0.0(0)
note
Bio-4_Tour of the Cell
Updated 176d ago
0.0(0)
note
Chapters 7: Periodic Trends
Updated 483d ago
0.0(0)

Explore top flashcards

flashcards
Chronic Disorders
37
Updated 1130d ago
0.0(0)
flashcards
-ARE Verb Nouns
25
Updated 20h ago
0.0(0)
flashcards
Item 1 Holidays
55
Updated 1251d ago
0.0(0)
flashcards
PNS Exam 2
165
Updated 180d ago
0.0(0)
flashcards
Grade 10 plant biology
74
Updated 1039d ago
0.0(0)
flashcards
Korean 4 - ANU
519
Updated 1220d ago
0.0(0)
flashcards
Chronic Disorders
37
Updated 1130d ago
0.0(0)
flashcards
-ARE Verb Nouns
25
Updated 20h ago
0.0(0)
flashcards
Item 1 Holidays
55
Updated 1251d ago
0.0(0)
flashcards
PNS Exam 2
165
Updated 180d ago
0.0(0)
flashcards
Grade 10 plant biology
74
Updated 1039d ago
0.0(0)
flashcards
Korean 4 - ANU
519
Updated 1220d ago
0.0(0)