-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcuda2.cu
225 lines (178 loc) · 4.16 KB
/
cuda2.cu
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
// nvcc cuda2.cu -o cuda2.out -gencode=arch=compute_75,code=compute_75 -O3
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <string>
#include <cuda.h>
#include <ctime>
#include "config.h"
#include <math.h>
#include <stdlib.h>
#define BLOCK_SIZE 4
__global__ void wakeGPU(int reps);
__global__ void floydWarshallKernel(int k, int *matrix, int n);
void floydWarshall(int *matrix, int n, int threadsPerBlock);
void populateMatrix(int *matrix, int n, int density);
void showDistances(int matrix[], int n);
int iDivUp(int a, int b);
int main(int argc, char* argv[])
{
int n, density, threadsPerBlock;
if(argc <= 3)
{
n = DEFAULT;
density = 100;
threadsPerBlock = BLOCK_SIZE;
}
else
{
n = atoi(argv[1]);
density = atoi(argv[2]);
threadsPerBlock = atoi(argv[3]);
}
int size = n * n * sizeof(int);
int* matrix = (int *) malloc(size);
populateMatrix(matrix, n, density);
printf("*** Adjacency matrix:\n");
showDistances(matrix, n);
cudaEvent_t start, stop;
cudaEventCreate(&start);
cudaEventCreate(&stop);
wakeGPU<<<1, threadsPerBlock>>>(32);
cudaEventRecord(start);
floydWarshall(matrix, n, threadsPerBlock);
cudaEventRecord(stop);
cudaEventSynchronize(stop);
float accum = 0;
cudaEventElapsedTime(&accum, start, stop);
printf("*** The solution is:\n");
showDistances(matrix, n);
printf("[GPGPU] Total elapsed time %f ms\n", accum);
// calculate theoretical occupancy
int maxActiveBlocks;
cudaOccupancyMaxActiveBlocksPerMultiprocessor( &maxActiveBlocks,
floydWarshallKernel, threadsPerBlock,
0);
int device;
cudaDeviceProp props;
cudaGetDevice(&device);
cudaGetDeviceProperties(&props, device);
float occupancy = (maxActiveBlocks * threadsPerBlock / props.warpSize) /
(float)(props.maxThreadsPerMultiProcessor /
props.warpSize);
printf("Launched blocks of size %d. Theoretical occupancy: %f\n",
threadsPerBlock, occupancy);
free(matrix);
return 0;
}
__global__ void wakeGPU(int reps)
{
int idx = blockIdx.x * blockDim.x + threadIdx.x;
if(idx >= reps)
{
return;
}
}
void floydWarshall(int *matrix, const int n, int threadsPerBlock)
{
int *deviceMatrix;
int size = n * n * sizeof(int);
cudaMalloc((int **) &deviceMatrix, size);
cudaMemcpy(deviceMatrix, matrix, size, cudaMemcpyHostToDevice);
dim3 dimGrid((n + threadsPerBlock - 1)/threadsPerBlock, n);
cudaFuncSetCacheConfig(floydWarshallKernel, cudaFuncCachePreferL1);
for(int k = 0; k < n; k++)
{
floydWarshallKernel<<<dimGrid, threadsPerBlock>>>(k, deviceMatrix, n);
}
cudaDeviceSynchronize();
cudaMemcpy(matrix, deviceMatrix, size, cudaMemcpyDeviceToHost);
cudaFree(deviceMatrix);
cudaError err = cudaGetLastError();
if(err != cudaSuccess)
{
fprintf(stderr,"GPUassert: %s %s %d\n", cudaGetErrorString(err), __FILE__, __LINE__);
exit(EXIT_FAILURE);
}
}
__global__ void floydWarshallKernel(int k, int *matrix, int n)
{
int i = blockDim.y * blockIdx.y + threadIdx.y;
int j = blockDim.x * blockIdx.x + threadIdx.x;
if (i < n && j < n)
{
int newPath = matrix[k * n + j] + matrix[i * n + k];
int oldPath = matrix[i * n + j];
if (oldPath > newPath)
{
matrix[i * n + j] = newPath;
}
}
}
void showDistances(int matrix[], int n)
{
if(PRINTABLE)
{
int i, j;
printf(" ");
for(i = 0; i < n; i++)
{
printf("[%d] ", i);
}
printf("\n");
for(i = 0; i < n; i++) {
printf("[%d]", i);
for(j = 0; j < n; j++)
{
if(matrix[i * n + j] == INF)
{
printf(" inf");
}
else
{
printf("%5d", matrix[i * n + j]);
}
}
printf("\n");
}
printf("\n");
}
}
void populateMatrix(int *matrix, int n, int density)
{
uint i, j, value;
srand(42);
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++){
if(i == j)
{
matrix[i*n+j] = 0;
}
else
{
value = 1 + rand() % MAX;
if(value > density)
{
matrix[i*n+j] = INF;
}
else
{
matrix[i*n+j] = value;
}
}
}
}
}
int iDivUp(int a, int b)
{
int result = ceil(1.0 * a / b);
if(result < 1)
{
return 1;
}
else
{
return result;
}
}