File size: 8,795 Bytes
5cb6c4b | 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 | /**
* 2DConvolution.cu: This file is part of the PolyBench/GPU 1.0 test suite.
*
*
* Contact: Scott Grauer-Gray <sgrauerg@gmail.com>
* Louis-Noel Pouchet <pouchet@cse.ohio-state.edu>
* Web address: http://www.cse.ohio-state.edu/~pouchet/software/polybench/GPU
*/
#include <unistd.h>
#include <stdio.h>
#include <time.h>
#include <sys/time.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <cuda.h>
#include "../../../common/cupti_add.h"
#include "../../../common/cpu_timestamps.h"
#include <cooperative_groups.h>
#include <cooperative_groups/memcpy_async.h>
using namespace nvcuda::experimental;
#define PREFETCH_COUNT 2
#define SMALL_FLOAT_VAL 0.00000001f
double rtclock()
{
struct timezone Tzp;
struct timeval Tp;
int stat;
stat = gettimeofday(&Tp, &Tzp);
if (stat != 0)
printf("Error return from gettimeofday: %d", stat);
return (Tp.tv_sec + Tp.tv_usec * 1.0e-6);
}
float absVal(float a)
{
if (a < 0)
{
return (a * -1);
}
else
{
return a;
}
}
float percentDiff(double val1, double val2)
{
if ((absVal(val1) < 0.01) && (absVal(val2) < 0.01))
{
return 0.0f;
}
else
{
return 100.0f * (absVal(absVal(val1 - val2) / absVal(val1 + SMALL_FLOAT_VAL)));
}
}
//define the error threshold for the results "not matching"
#define PERCENT_DIFF_ERROR_THRESHOLD 0.05
#define GPU_DEVICE 0
/* Problem size */
#define SIZE 4096
#define NBLOCKS 32
#define BATCH_SIZE 4
int NI;
int NJ;
int nblocks;
/* Thread block dimensions */
#define KERNEL 3
#define DIM_THREAD_BLOCK 8
/* Can switch DATA_TYPE between float and double */
typedef float DATA_TYPE;
void conv2D(DATA_TYPE* A, DATA_TYPE* B)
{
int i, j;
DATA_TYPE c11, c12, c13, c21, c22, c23, c31, c32, c33;
c11 = +0.2; c21 = +0.5; c31 = -0.8;
c12 = -0.3; c22 = +0.6; c32 = -0.9;
c13 = +0.4; c23 = +0.7; c33 = +0.10;
for (i = 1; i < NI - 1; ++i) // 0
{
for (j = 1; j < NJ - 1; ++j) // 1
{
B[i*NJ + j] = c11 * A[(i - 1)*NJ + (j - 1)] + c12 * A[(i + 0)*NJ + (j - 1)] + c13 * A[(i + 1)*NJ + (j - 1)]
+ c21 * A[(i - 1)*NJ + (j + 0)] + c22 * A[(i + 0)*NJ + (j + 0)] + c23 * A[(i + 1)*NJ + (j + 0)]
+ c31 * A[(i - 1)*NJ + (j + 1)] + c32 * A[(i + 0)*NJ + (j + 1)] + c33 * A[(i + 1)*NJ + (j + 1)];
}
}
}
void initGPU(DATA_TYPE* A_gpu)
{
int i, j;
for (i = 0; i < NI; ++i) {
for (j = 0; j < NJ; ++j) {
A_gpu[i * NJ + j] = ((DATA_TYPE)i * j) / NI;
}
}
}
void initCPU(DATA_TYPE* A)
{
int i, j;
for (i = 0; i < NI; ++i) {
for (j = 0; j < NJ; ++j) {
A[i * NJ + j] = ((DATA_TYPE)i * j) / NI;
}
}
}
void compareResults(DATA_TYPE* B, DATA_TYPE* B_outputFromGpu)
{
int i, j, fail;
fail = 0;
// Compare a and b
for (i=1; i < (NI-1); i++)
{
for (j=1; j < (NJ-1); j++)
{
if (percentDiff(B[i*NJ + j], B_outputFromGpu[i*NJ + j]) > PERCENT_DIFF_ERROR_THRESHOLD)
{
printf("%d, %d, CPU is %f, GPU is %f.\n", i, j, B[i * NJ + j], B_outputFromGpu[i * NJ + j]);
fail++;
}
}
}
// Print results
printf("Non-Matching CPU-GPU Outputs Beyond Error Threshold of %4.2f Percent: %d\n", PERCENT_DIFF_ERROR_THRESHOLD, fail);
}
void GPU_argv_init()
{
cudaDeviceProp deviceProp;
cudaGetDeviceProperties(&deviceProp, GPU_DEVICE);
printf("setting device %d with name %s\n",GPU_DEVICE,deviceProp.name);
cudaSetDevice( GPU_DEVICE );
}
__global__ void Convolution2D_kernel(DATA_TYPE *A, DATA_TYPE *B, int NI, int NJ, int block_size)
{
cooperative_groups::thread_block block = cooperative_groups::this_thread_block();
int tile_dim_x = (NJ + DIM_THREAD_BLOCK - 1) / (DIM_THREAD_BLOCK * BATCH_SIZE);
__shared__ DATA_TYPE tmp_A[DIM_THREAD_BLOCK * BATCH_SIZE + KERNEL - 1][DIM_THREAD_BLOCK * BATCH_SIZE + KERNEL - 1];
__shared__ DATA_TYPE tmp_B[DIM_THREAD_BLOCK * BATCH_SIZE][DIM_THREAD_BLOCK * BATCH_SIZE];
int total_tiles = tile_dim_x * tile_dim_x;
int tiles_this_block_x = (block_size / (DIM_THREAD_BLOCK * BATCH_SIZE));
int tiles_this_block = tiles_this_block_x * tiles_this_block_x;
int base_tile = (blockIdx.y * gridDim.x + blockIdx.x) * tiles_this_block;
int tile = base_tile;
int end_tile = tile + tiles_this_block;
// DATA_TYPE c11, c12, c13, c21, c22, c23, c31, c32, c33;
// c11 = +0.2; c21 = +0.5; c31 = -0.8;
// c12 = -0.3; c22 = +0.6; c32 = -0.9;
// c13 = +0.4; c23 = +0.7; c33 = +0.10;
DATA_TYPE c[KERNEL][KERNEL];
c[0][0] = +0.2;
c[1][0] = +0.5;
c[2][0] = -0.8;
c[0][1] = -0.3;
c[1][1] = +0.6;
c[2][1] = -0.9;
c[0][2] = +0.4;
c[1][2] = +0.7;
c[2][2] = +0.10;
for (; tile < end_tile; tile += 1)
{
// block id
int offset = tile - base_tile;
int block_id = tile / tiles_this_block;
int bx = block_id % gridDim.x * tiles_this_block_x + offset % tiles_this_block_x;
int by = block_id / gridDim.x * tiles_this_block_x + offset / tiles_this_block_x;
int batch_size = DIM_THREAD_BLOCK * BATCH_SIZE;
// thread id
int tx = threadIdx.x;
int ty = threadIdx.y;
int index_B_y = DIM_THREAD_BLOCK * BATCH_SIZE * by + BATCH_SIZE * ty + 1;
int index_B_x = DIM_THREAD_BLOCK * BATCH_SIZE * bx + BATCH_SIZE * tx + 1;
int index_A_y = DIM_THREAD_BLOCK * BATCH_SIZE * by + BATCH_SIZE * ty;
int index_A_x = DIM_THREAD_BLOCK * BATCH_SIZE * bx + BATCH_SIZE * tx;
int index_A_y_start = DIM_THREAD_BLOCK * BATCH_SIZE * by;
int index_A_x_start = DIM_THREAD_BLOCK * BATCH_SIZE * bx;
int index_A_y_bound = DIM_THREAD_BLOCK * BATCH_SIZE * by + BATCH_SIZE * DIM_THREAD_BLOCK;
int index_A_x_bound = DIM_THREAD_BLOCK * BATCH_SIZE * bx + BATCH_SIZE * DIM_THREAD_BLOCK;
// fetch A
for (int i = 0; i < BATCH_SIZE; i++) {
for (int j = 0; j < BATCH_SIZE; j++) {
if ((index_A_y + i) < NI && (index_A_x + j) < NJ) {
tmp_A[ty * BATCH_SIZE + i][tx * BATCH_SIZE + j] = A[(index_A_y + i) * NJ + index_A_x + j];
tmp_B[ty * BATCH_SIZE + i][tx * BATCH_SIZE + j] = 0;
}
}
}
block.sync();
if (tx < DIM_THREAD_BLOCK && ty < DIM_THREAD_BLOCK) {
// Computation
for (int i = 0; i < BATCH_SIZE; i++) {
for (int j = 0; j < BATCH_SIZE; j++) {
for (int m = 0; m < KERNEL; m++) {
for (int n = 0; n < KERNEL; n++) {
tmp_B[ty * BATCH_SIZE + i][tx * BATCH_SIZE + j] += tmp_A[ty * BATCH_SIZE + i + m][tx * BATCH_SIZE + j + n] * c[n][m];
}
}
}
}
block.sync();
// Store B
for (int i = 0; i < BATCH_SIZE; i++) {
for (int j = 0; j < BATCH_SIZE; j++) {
if ((index_B_y + i + 1) < NI && (index_B_x + j + 1) < NJ) {
B[(index_B_y + i) * NJ + index_B_x + j] = tmp_B[ty * BATCH_SIZE + i][tx * BATCH_SIZE + j];
}
}
}
block.sync();
}
}
}
void convolution2DCuda(DATA_TYPE *A, DATA_TYPE *B, DATA_TYPE *A_gpu, DATA_TYPE *B_gpu)
{
double t_start, t_end;
int output_width = NI - KERNEL + 1;
int output_height = NJ - KERNEL + 1;
dim3 block(DIM_THREAD_BLOCK + KERNEL - 1, DIM_THREAD_BLOCK + KERNEL - 1);
dim3 grid(nblocks, nblocks);
int block_size = (NJ + (nblocks - 1)) / nblocks;
// t_start = rtclock();
cudaMemcpy(A_gpu, A, sizeof(DATA_TYPE) * NI * NJ, cudaMemcpyHostToDevice);
Convolution2D_kernel<<<grid,block>>>(A_gpu, B_gpu, NI, NJ, block_size);
cudaDeviceSynchronize();
cudaMemcpy(B, B_gpu, sizeof(DATA_TYPE) * NI * NJ, cudaMemcpyDeviceToHost);
// t_end = rtclock();
// fprintf(stdout, "GPU Runtime: %0.6lfs\n", t_end - t_start);//);
}
extern inline __attribute__((always_inline)) unsigned long rdtsc()
{
unsigned long a, d;
__asm__ volatile("rdtsc"
: "=a"(a), "=d"(d));
return (a | (d << 32));
}
extern inline __attribute__((always_inline)) unsigned long rdtsp()
{
struct timespec tms;
if (clock_gettime(CLOCK_REALTIME, &tms))
{
return -1;
}
unsigned long ns = tms.tv_sec * 1000000000;
ns += tms.tv_nsec;
return ns;
}
int main(int argc, char *argv[])
{
uint64_t start_tsc = rdtsc();
uint64_t start_tsp = rdtsp();
printf("start_tsc %lu start_tsp %lu\n", start_tsc, start_tsp);
if (argc >= 4) {
NI = atoi(argv[1]);
NJ = atoi(argv[2]);
nblocks = atoi(argv[3]);
} else {
NI = SIZE;
NJ = SIZE;
nblocks = NBLOCKS;
}
double t_start, t_end;
DATA_TYPE* A;
DATA_TYPE* B;
DATA_TYPE *B_ref;
DATA_TYPE *A_gpu;
DATA_TYPE *B_gpu;
A = (DATA_TYPE*)malloc(NI*NJ*sizeof(DATA_TYPE));
B = (DATA_TYPE*)malloc(NI*NJ*sizeof(DATA_TYPE));
B_ref = (DATA_TYPE *)malloc(NI * NJ * sizeof(DATA_TYPE));
initCPU(A);
GPU_argv_init();
initTrace();
startCPU();
cudaMalloc(&A_gpu, sizeof(DATA_TYPE) * NI * NJ);
cudaMalloc(&B_gpu, sizeof(DATA_TYPE) * NI * NJ);
// B_outputFromGpu = (DATA_TYPE*)malloc(NI*NJ*sizeof(DATA_TYPE));
convolution2DCuda(A, B, A_gpu, B_gpu);
cudaFree(A_gpu);
cudaFree(B_gpu);
endCPU();
finiTrace();
t_start = rtclock();
conv2D(A, B_ref);
t_end = rtclock();
fprintf(stdout, "CPU Runtime: %0.6lfs\n", t_end - t_start);//);
compareResults(B, B_ref);
free(A);
free(B);
return 0;
}
|