hl_cuda_cnn.cu 50.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
C
chengduoZH 已提交
2

Z
zhangjinchao01 已提交
3 4 5
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
C
chengduoZH 已提交
6

Z
zhangjinchao01 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
C
chengduoZH 已提交
8

Z
zhangjinchao01 已提交
9 10 11 12 13 14 15 16 17
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#include <float.h>
#include "hl_base.h"
#include "hl_cnn.h"
L
liaogang 已提交
18
#include "hl_device_functions.cuh"
Z
zhangjinchao01 已提交
19

L
liaogang 已提交
20 21 22 23
__global__ void KeMaxPoolForward(const int nthreads,
                                 const real* inputData,
                                 const int channels,
                                 const int height,
24
                                 const int width,
L
liaogang 已提交
25 26 27 28 29 30 31 32 33
                                 const int pooledH,
                                 const int pooledW,
                                 const int ksizeW,
                                 const int ksizeH,
                                 const int strideH,
                                 const int strideW,
                                 const int offsetH,
                                 const int offsetW,
                                 real* tgtData,
X
xzl 已提交
34
                                 const int tgtStride,
35
                                 real* maskData) {
L
liaogang 已提交
36
  int index = blockIdx.x * blockDim.x + threadIdx.x;
Z
zhangjinchao01 已提交
37 38 39 40
  if (index < nthreads) {
    int pw = index % pooledW;
    int ph = (index / pooledW) % pooledH;
    int c = (index / pooledW / pooledH) % channels;
41 42 43 44 45 46 47
    int frameNum = index / pooledW / pooledH / channels;
    int hstart = ph * strideH - offsetH;
    int wstart = pw * strideW - offsetW;
    int hend = min(hstart + ksizeH, height);
    int wend = min(wstart + ksizeW, width);
    hstart = max(hstart, 0);
    wstart = max(wstart, 0);
Z
zhangjinchao01 已提交
48
    real maxval = -FLT_MAX;
X
xzl 已提交
49
    int max_index = -1;
Z
zhangjinchao01 已提交
50 51 52
    inputData += (frameNum * channels + c) * height * width;
    for (int h = hstart; h < hend; ++h) {
      for (int w = wstart; w < wend; ++w) {
X
xzl 已提交
53 54
        if (maxval < inputData[h * width + w]) {
          max_index = h * width + w;
X
xzl 已提交
55
          maxval = inputData[max_index];
X
xzl 已提交
56
        }
Z
zhangjinchao01 已提交
57 58
      }
    }
L
liaogang 已提交
59 60
    int tgtIndex =
        index % (pooledW * pooledH * channels) + frameNum * tgtStride;
Q
qijun 已提交
61
    tgtData[tgtIndex] = maxval;
62
    if (maskData != NULL) {
X
xzl 已提交
63 64
      maskData[tgtIndex] = max_index;
    }
Z
zhangjinchao01 已提交
65 66 67
  }
}

X
xzl 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
void hl_maxpool_forward(const int frameCnt,
                        const real* inputData,
                        const int channels,
                        const int height,
                        const int width,
                        const int pooledH,
                        const int pooledW,
                        const int sizeX,
                        const int sizeY,
                        const int strideH,
                        const int strideW,
                        const int paddingH,
                        const int paddingW,
                        real* tgtData,
                        const int tgtStride,
83
                        real* maskData) {
X
xzl 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
  int num_kernels = pooledH * pooledW * channels * frameCnt;
  int blocks = (num_kernels + 1024 - 1) / 1024;
  dim3 threads(1024, 1);
  dim3 grid(blocks, 1);

  KeMaxPoolForward<<<grid, threads, 0, STREAM_DEFAULT>>>(num_kernels,
                                                         inputData,
                                                         channels,
                                                         height,
                                                         width,
                                                         pooledH,
                                                         pooledW,
                                                         sizeX,
                                                         sizeY,
                                                         strideH,
                                                         strideW,
                                                         paddingH,
                                                         paddingW,
                                                         tgtData,
                                                         tgtStride,
104
                                                         maskData);
Z
zhangjinchao01 已提交
105 106 107
  CHECK_SYNC("hl_maxpool_forward failed");
}

L
liaogang 已提交
108 109 110 111 112 113
__global__ void KeMaxPoolBackward(const int nthreads,
                                  const real* inputData,
                                  const real* outData,
                                  const real* outGrad,
                                  const int channels,
                                  const int height,
114
                                  const int width,
L
liaogang 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127
                                  const int pooledH,
                                  const int pooledW,
                                  const int sizeX,
                                  const int sizeY,
                                  const int strideH,
                                  const int strideW,
                                  const int padH,
                                  const int padW,
                                  real scaleA,
                                  real scaleB,
                                  real* targetGrad,
                                  const int outStride) {
  int index = blockIdx.x * blockDim.x + threadIdx.x;
Z
zhangjinchao01 已提交
128 129 130
  if (index < nthreads) {
    // find out the local index
    // find out the local offset
131 132
    int offsetW = index % width + padW;
    int offsetH = (index / width) % height + padH;
Z
zhangjinchao01 已提交
133
    int offsetC = (index / width / height) % channels;
134 135 136 137 138 139

    int frameNum = index / width / height / channels;
    int phstart = (offsetH < sizeY) ? 0 : (offsetH - sizeY) / strideH + 1;
    int pwstart = (offsetW < sizeX) ? 0 : (offsetW - sizeX) / strideW + 1;
    int phend = offsetH >= 0 ? min(offsetH / strideH + 1, pooledH) : 0;
    int pwend = offsetW >= 0 ? min(offsetW / strideW + 1, pooledW) : 0;
Z
zhangjinchao01 已提交
140 141
    real gradient = 0;
    real input = inputData[index];
Q
qijun 已提交
142 143
    outData += (frameNum * outStride + offsetC * pooledH * pooledW);
    outGrad += (frameNum * outStride + offsetC * pooledH * pooledW);
Z
zhangjinchao01 已提交
144 145 146 147 148 149 150
    for (int ph = phstart; ph < phend; ++ph) {
      for (int pw = pwstart; pw < pwend; ++pw) {
        if (input == outData[ph * pooledW + pw]) {
          gradient += outGrad[ph * pooledW + pw];
        }
      }
    }
L
liaogang 已提交
151
    targetGrad[index] = scaleB * targetGrad[index] + scaleA * gradient;
Z
zhangjinchao01 已提交
152 153 154
  }
}

L
liaogang 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
void hl_maxpool_backward(const int frameCnt,
                         const real* inputData,
                         const real* outData,
                         const real* outGrad,
                         const int channels,
                         const int height,
                         const int width,
                         const int pooledH,
                         const int pooledW,
                         const int sizeX,
                         const int sizeY,
                         const int strideH,
                         const int strideW,
                         const int paddingH,
                         const int paddingW,
                         real scaleA,
                         real scaleB,
                         real* targetGrad,
                         const int outStride) {
174 175
  int num_kernels = height * width * channels * frameCnt;
  int blocks = (num_kernels + 1024 - 1) / 1024;
Z
zhangjinchao01 已提交
176

L
liaogang 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
  KeMaxPoolBackward<<<blocks, 1024, 0, STREAM_DEFAULT>>>(num_kernels,
                                                         inputData,
                                                         outData,
                                                         outGrad,
                                                         channels,
                                                         height,
                                                         width,
                                                         pooledH,
                                                         pooledW,
                                                         sizeX,
                                                         sizeY,
                                                         strideH,
                                                         strideW,
                                                         paddingH,
                                                         paddingW,
                                                         scaleA,
                                                         scaleB,
                                                         targetGrad,
                                                         outStride);
Z
zhangjinchao01 已提交
196 197 198
  CHECK_SYNC("hl_maxpool_backward");
}

L
liaogang 已提交
199 200
__global__ void KeAvgPoolForward(const int nthreads,
                                 const real* inputData,
201
                                 const int channels,
L
liaogang 已提交
202 203 204 205 206 207 208 209 210 211 212
                                 const int height,
                                 const int width,
                                 const int pooledH,
                                 const int pooledW,
                                 const int sizeX,
                                 const int sizeY,
                                 const int strideH,
                                 const int strideW,
                                 const int padH,
                                 const int padW,
                                 real* tgtData,
213 214
                                 const int tgtStride,
                                 const bool excludeMode) {
215
  int index = blockIdx.x * blockDim.x + threadIdx.x;
Z
zhangjinchao01 已提交
216 217 218 219
  if (index < nthreads) {
    int pw = index % pooledW;
    int ph = (index / pooledW) % pooledH;
    int c = (index / pooledW / pooledH) % channels;
220 221 222 223
    int frameNum = index / pooledW / pooledH / channels;

    int hstart = ph * strideH - padH;
    int wstart = pw * strideW - padW;
224 225
    int hend = min(hstart + sizeY, height);
    int wend = min(wstart + sizeX, width);
226 227
    hstart = max(hstart, 0);
    wstart = max(wstart, 0);
228 229
    int poolSize =
        excludeMode ? (hend - hstart) * (wend - wstart) : sizeY * sizeX;
230

Z
zhangjinchao01 已提交
231 232 233 234 235 236 237
    real aveval = 0;
    inputData += (frameNum * channels + c) * height * width;
    for (int h = hstart; h < hend; ++h) {
      for (int w = wstart; w < wend; ++w) {
        aveval += inputData[h * width + w];
      }
    }
L
liaogang 已提交
238 239
    int tgtIndex =
        index % (pooledW * pooledH * channels) + frameNum * tgtStride;
240
    tgtData[tgtIndex] = aveval / poolSize;
Z
zhangjinchao01 已提交
241 242 243
  }
}

L
liaogang 已提交
244 245
void hl_avgpool_forward(const int frameCnt,
                        const real* inputData,
246
                        const int channels,
L
liaogang 已提交
247 248 249 250 251 252 253 254 255 256 257
                        const int height,
                        const int width,
                        const int pooledH,
                        const int pooledW,
                        const int sizeX,
                        const int sizeY,
                        const int strideH,
                        const int strideW,
                        const int paddingH,
                        const int paddingW,
                        real* tgtData,
258 259
                        const int tgtStride,
                        const bool excludeMode) {
260 261
  int num_kernels = pooledH * pooledW * channels * frameCnt;
  int blocks = (num_kernels + 1024 - 1) / 1024;
L
liaogang 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275
  KeAvgPoolForward<<<blocks, 1024, 0, STREAM_DEFAULT>>>(num_kernels,
                                                        inputData,
                                                        channels,
                                                        height,
                                                        width,
                                                        pooledH,
                                                        pooledW,
                                                        sizeX,
                                                        sizeY,
                                                        strideH,
                                                        strideW,
                                                        paddingH,
                                                        paddingW,
                                                        tgtData,
276 277
                                                        tgtStride,
                                                        excludeMode);
Z
zhangjinchao01 已提交
278 279 280
  CHECK_SYNC("hl_avgpool_forward failed");
}

L
liaogang 已提交
281 282 283 284
__global__ void KeAvgPoolBackward(const int nthreads,
                                  const real* outGrad,
                                  const int channels,
                                  const int height,
285
                                  const int width,
L
liaogang 已提交
286 287 288 289 290 291 292 293 294 295 296
                                  const int pooledH,
                                  const int pooledW,
                                  const int sizeX,
                                  const int sizeY,
                                  const int strideH,
                                  const int strideW,
                                  const int padH,
                                  const int padW,
                                  real scaleA,
                                  real scaleB,
                                  real* tgtGrad,
297 298
                                  const int outStride,
                                  const bool excludeMode) {
299
  int index = blockIdx.x * blockDim.x + threadIdx.x;
Z
zhangjinchao01 已提交
300
  if (index < nthreads) {
301 302
    int offsetW = index % width + padW;
    int offsetH = (index / width) % height + padH;
Z
zhangjinchao01 已提交
303
    int offsetC = (index / width / height) % channels;
304 305 306 307 308 309
    int frameNum = index / width / height / channels;

    int phstart = (offsetH < sizeY) ? 0 : (offsetH - sizeY) / strideH + 1;
    int pwstart = (offsetW < sizeX) ? 0 : (offsetW - sizeX) / strideW + 1;
    int phend = offsetH >= 0 ? min(offsetH / strideH + 1, pooledH) : 0;
    int pwend = offsetW >= 0 ? min(offsetW / strideW + 1, pooledW) : 0;
Z
zhangjinchao01 已提交
310
    real gradient = 0;
Q
qijun 已提交
311 312
    outGrad += (frameNum * outStride + offsetC * pooledH * pooledW);

Z
zhangjinchao01 已提交
313
    for (int ph = phstart; ph < phend; ++ph) {
314
      int hstart = ph * strideH - padH;
315 316
      int hend = min(hstart + sizeY, height);
      hstart = max(hstart, 0);
Z
zhangjinchao01 已提交
317 318
      for (int pw = pwstart; pw < pwend; ++pw) {
        // figure out the pooling size
319
        int wstart = pw * strideW - padW;
320 321
        int wend = min(wstart + sizeX, width);
        wstart = max(wstart, 0);
322 323 324
        int poolSize =
            excludeMode ? (hend - hstart) * (wend - wstart) : sizeY * sizeX;
        gradient += outGrad[ph * pooledW + pw] / poolSize;
Z
zhangjinchao01 已提交
325 326 327 328 329 330
      }
    }
    tgtGrad[index] = scaleB * tgtGrad[index] + scaleA * gradient;
  }
}

L
liaogang 已提交
331 332
void hl_avgpool_backward(const int frameCnt,
                         const real* outGrad,
333
                         const int channels,
L
liaogang 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346
                         const int height,
                         const int width,
                         const int pooledH,
                         const int pooledW,
                         const int sizeX,
                         const int sizeY,
                         const int strideH,
                         const int strideW,
                         const int paddingH,
                         const int paddingW,
                         real scaleA,
                         real scaleB,
                         real* backGrad,
347 348
                         const int outStride,
                         const bool excludeMode) {
349 350
  int num_kernels = height * width * channels * frameCnt;
  int blocks = (num_kernels + 1024 - 1) / 1024;
Z
zhangjinchao01 已提交
351

L
liaogang 已提交
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
  KeAvgPoolBackward<<<blocks, 1024, 0, STREAM_DEFAULT>>>(num_kernels,
                                                         outGrad,
                                                         channels,
                                                         height,
                                                         width,
                                                         pooledH,
                                                         pooledW,
                                                         sizeX,
                                                         sizeY,
                                                         strideH,
                                                         strideW,
                                                         paddingH,
                                                         paddingW,
                                                         scaleA,
                                                         scaleB,
                                                         backGrad,
368 369
                                                         outStride,
                                                         excludeMode);
Z
zhangjinchao01 已提交
370 371 372
  CHECK_SYNC("hl_avgpool_backward failed");
}

C
chengduoZH 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
__global__ void KeMaxPool3DForward(const int nthreads,
                                   const real* inputData,
                                   const int channels,
                                   const int depth,
                                   const int height,
                                   const int width,
                                   const int pooledD,
                                   const int pooledH,
                                   const int pooledW,
                                   const int ksizeD,
                                   const int ksizeH,
                                   const int ksizeW,
                                   const int strideD,
                                   const int strideH,
                                   const int strideW,
C
chengduoZH 已提交
388 389 390
                                   const int padD,
                                   const int padH,
                                   const int padW,
C
chengduoZH 已提交
391
                                   real* tgtData,
C
chengduoZH 已提交
392
                                   real* maxPoolIdxData,
C
chengduoZH 已提交
393 394 395 396 397 398 399 400
                                   const int tgtStride) {
  for (int index = blockIdx.x * blockDim.x + threadIdx.x; index < (nthreads);
       index += blockDim.x * gridDim.x) {
    int pw = index % pooledW;
    int ph = (index / pooledW) % pooledH;
    int pd = (index / pooledW / pooledH) % pooledD;
    int c = (index / pooledW / pooledH / pooledD) % channels;
    int frameNum = index / pooledW / pooledH / pooledD / channels;
C
chengduoZH 已提交
401 402 403
    int dstart = pd * strideD - padD;
    int hstart = ph * strideH - padH;
    int wstart = pw * strideW - padW;
C
chengduoZH 已提交
404 405 406 407 408 409 410
    int dend = min(dstart + ksizeD, depth);
    int hend = min(hstart + ksizeH, height);
    int wend = min(wstart + ksizeW, width);
    dstart = max(dstart, 0);
    hstart = max(hstart, 0);
    wstart = max(wstart, 0);
    real maxval = -FLT_MAX;
C
chengduoZH 已提交
411
    int maxIdx = -1;
C
chengduoZH 已提交
412 413 414 415
    inputData += (frameNum * channels + c) * depth * height * width;
    for (int d = dstart; d < dend; ++d) {
      for (int h = hstart; h < hend; ++h) {
        for (int w = wstart; w < wend; ++w) {
C
chengduoZH 已提交
416
          if (maxval < inputData[(d * height + h) * width + w]) {
C
chengduoZH 已提交
417
            maxval = inputData[(d * height + h) * width + w];
C
chengduoZH 已提交
418 419
            maxIdx = (d * height + h) * width + w;
          }
C
chengduoZH 已提交
420 421 422 423 424 425
        }
      }
    }
    int tgtIndex =
        index % (pooledW * pooledH * pooledD * channels) + frameNum * tgtStride;
    tgtData[tgtIndex] = maxval;
C
chengduoZH 已提交
426
    maxPoolIdxData[tgtIndex] = maxIdx;
C
chengduoZH 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
  }
}

void hl_maxpool3D_forward(const int frameCnt,
                          const real* inputData,
                          const int channels,
                          const int depth,
                          const int height,
                          const int width,
                          const int pooledD,
                          const int pooledH,
                          const int pooledW,
                          const int sizeZ,
                          const int sizeY,
                          const int sizeX,
                          const int strideD,
                          const int strideH,
                          const int strideW,
C
chengduoZH 已提交
445 446 447
                          const int padD,
                          const int padH,
                          const int padW,
C
chengduoZH 已提交
448
                          real* tgtData,
C
chengduoZH 已提交
449
                          real* maxPoolIdxData,
C
chengduoZH 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
                          const int tgtStride) {
  int num_kernels = pooledD * pooledH * pooledW * channels * frameCnt;
  int blocks = (num_kernels + 1024 - 1) / 1024;
  dim3 threads(1024, 1);
  dim3 grid(blocks, 1);

  KeMaxPool3DForward<<<grid, threads, 0, STREAM_DEFAULT>>>(num_kernels,
                                                           inputData,
                                                           channels,
                                                           depth,
                                                           height,
                                                           width,
                                                           pooledD,
                                                           pooledH,
                                                           pooledW,
                                                           sizeZ,
                                                           sizeY,
                                                           sizeX,
                                                           strideD,
                                                           strideH,
                                                           strideW,
C
chengduoZH 已提交
471 472 473
                                                           padD,
                                                           padH,
                                                           padW,
C
chengduoZH 已提交
474
                                                           tgtData,
C
chengduoZH 已提交
475
                                                           maxPoolIdxData,
C
chengduoZH 已提交
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
                                                           tgtStride);
  CHECK_SYNC("hl_maxpool3D_forward failed");
}

__global__ void KeMaxPool3DBackward(const int nthreads,
                                    const real* outGrad,
                                    const int channels,
                                    const int depth,
                                    const int height,
                                    const int width,
                                    const int pooledD,
                                    const int pooledH,
                                    const int pooledW,
                                    const int sizeZ,
                                    const int sizeY,
                                    const int sizeX,
                                    const int strideD,
                                    const int strideH,
                                    const int strideW,
                                    const int padD,
                                    const int padH,
                                    const int padW,
                                    real scaleA,
                                    real scaleB,
                                    real* targetGrad,
C
chengduoZH 已提交
501
                                    real* maxPoolIdxData,
C
chengduoZH 已提交
502 503 504
                                    const int outStride) {
  for (int index = blockIdx.x * blockDim.x + threadIdx.x; index < (nthreads);
       index += blockDim.x * gridDim.x) {
C
chengduoZH 已提交
505 506 507
    int offsetW = index % width;
    int offsetH = (index / width) % height;
    int offsetD = (index / width / height) % depth;
C
chengduoZH 已提交
508 509 510
    int offsetC = (index / width / height / depth) % channels;
    int frameNum = index / width / height / depth / channels;

C
chengduoZH 已提交
511 512 513 514 515 516 517 518 519
    int pdstart =
        (offsetD + padD < sizeZ) ? 0 : (offsetD + padD - sizeZ) / strideD + 1;
    int phstart =
        (offsetH + padH < sizeY) ? 0 : (offsetH + padH - sizeY) / strideH + 1;
    int pwstart =
        (offsetW + padW < sizeX) ? 0 : (offsetW + padW - sizeX) / strideW + 1;
    int pdend = min((offsetD + padD) / strideD + 1, pooledD);
    int phend = min((offsetH + padH) / strideH + 1, pooledH);
    int pwend = min((offsetW + padW) / strideW + 1, pooledW);
C
chengduoZH 已提交
520 521 522

    real gradient = 0;
    outGrad += ((frameNum * channels + offsetC) * pooledD * pooledH * pooledW);
C
chengduoZH 已提交
523 524
    maxPoolIdxData +=
        ((frameNum * channels + offsetC) * pooledD * pooledH * pooledW);
C
chengduoZH 已提交
525 526 527
    for (int pd = pdstart; pd < pdend; ++pd) {
      for (int ph = phstart; ph < phend; ++ph) {
        for (int pw = pwstart; pw < pwend; ++pw) {
C
chengduoZH 已提交
528 529
          if (((offsetD * height + offsetH) * width + offsetW) ==
              maxPoolIdxData[(pd * pooledH + ph) * pooledW + pw])
C
chengduoZH 已提交
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
            gradient += outGrad[(pd * pooledH + ph) * pooledW + pw];
        }
      }
    }
    targetGrad[index] = scaleA * gradient + scaleB * targetGrad[index];
  }
}

void hl_maxpool3D_backward(const int frameCnt,
                           const real* outGrad,
                           const int channels,
                           const int depth,
                           const int height,
                           const int width,
                           const int outputD,
                           const int outputH,
                           const int outputW,
                           const int sizeZ,
                           const int sizeY,
                           const int sizeX,
                           const int strideD,
                           const int strideH,
                           const int strideW,
                           const int paddingD,
                           const int paddingH,
                           const int paddingW,
                           real scaleA,
                           real scaleB,
                           real* targetGrad,
C
chengduoZH 已提交
559
                           real* maxPoolIdxData,
C
chengduoZH 已提交
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
                           const int outStride) {
  int num_kernels = depth * height * width * channels * frameCnt;
  int blocks = (num_kernels + 1024 - 1) / 1024;

  KeMaxPool3DBackward<<<blocks, 1024, 0, STREAM_DEFAULT>>>(num_kernels,
                                                           outGrad,
                                                           channels,
                                                           depth,
                                                           height,
                                                           width,
                                                           outputD,
                                                           outputH,
                                                           outputW,
                                                           sizeZ,
                                                           sizeY,
                                                           sizeX,
                                                           strideD,
                                                           strideH,
                                                           strideW,
                                                           paddingD,
                                                           paddingH,
                                                           paddingW,
                                                           scaleA,
                                                           scaleB,
                                                           targetGrad,
C
chengduoZH 已提交
585
                                                           maxPoolIdxData,
C
chengduoZH 已提交
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
                                                           outStride);
  CHECK_SYNC("hl_maxpool3D_backward");
}

__global__ void KeAvgPool3DForward(const int nthreads,
                                   const real* inputData,
                                   const int channels,
                                   const int depth,
                                   const int height,
                                   const int width,
                                   const int pooledD,
                                   const int pooledH,
                                   const int pooledW,
                                   const int sizeZ,
                                   const int sizeY,
                                   const int sizeX,
                                   const int strideD,
                                   const int strideH,
                                   const int strideW,
                                   const int padD,
                                   const int padH,
                                   const int padW,
                                   real* tgtData,
                                   const int tgtStride) {
  for (int index = blockIdx.x * blockDim.x + threadIdx.x; index < (nthreads);
       index += blockDim.x * gridDim.x) {
    int pw = index % pooledW;
    int ph = (index / pooledW) % pooledH;
    int pd = (index / pooledW / pooledH) % pooledD;
    int c = (index / pooledW / pooledH / pooledD) % channels;
    int frameNum = index / pooledW / pooledH / pooledD / channels;
    int dstart = pd * strideD - padD;
    int hstart = ph * strideH - padH;
    int wstart = pw * strideW - padW;
620 621 622
    int dend = min(dstart + sizeZ, depth);
    int hend = min(hstart + sizeY, height);
    int wend = min(wstart + sizeX, width);
C
chengduoZH 已提交
623 624 625
    dstart = max(dstart, 0);
    hstart = max(hstart, 0);
    wstart = max(wstart, 0);
626
    int pool_size = (dend - dstart) * (hend - hstart) * (wend - wstart);
C
chengduoZH 已提交
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 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728

    real aveval = 0;
    inputData += (frameNum * channels + c) * depth * height * width;
    for (int d = dstart; d < dend; ++d) {
      for (int h = hstart; h < hend; ++h) {
        for (int w = wstart; w < wend; ++w) {
          aveval += inputData[(d * height + h) * width + w];
        }
      }
    }
    int tgtIndex =
        index % (pooledW * pooledH * pooledD * channels) + frameNum * tgtStride;
    tgtData[tgtIndex] = aveval / pool_size;
  }
}

void hl_avgpool3D_forward(const int frameCnt,
                          const real* inputData,
                          const int channels,
                          const int depth,
                          const int height,
                          const int width,
                          const int pooledD,
                          const int pooledH,
                          const int pooledW,
                          const int sizeZ,
                          const int sizeY,
                          const int sizeX,
                          const int strideD,
                          const int strideH,
                          const int strideW,
                          const int paddingD,
                          const int paddingH,
                          const int paddingW,
                          real* tgtData,
                          const int tgtStride) {
  int num_kernels = pooledD * pooledH * pooledW * channels * frameCnt;
  int blocks = (num_kernels + 1024 - 1) / 1024;
  KeAvgPool3DForward<<<blocks, 1024, 0, STREAM_DEFAULT>>>(num_kernels,
                                                          inputData,
                                                          channels,
                                                          depth,
                                                          height,
                                                          width,
                                                          pooledD,
                                                          pooledH,
                                                          pooledW,
                                                          sizeZ,
                                                          sizeY,
                                                          sizeX,
                                                          strideD,
                                                          strideH,
                                                          strideW,
                                                          paddingD,
                                                          paddingH,
                                                          paddingW,
                                                          tgtData,
                                                          tgtStride);
  CHECK_SYNC("hl_avgpool3D_forward failed");
}

__global__ void KeAvgPool3DBackward(const int nthreads,
                                    const real* outGrad,
                                    const int channels,
                                    const int depth,
                                    const int height,
                                    const int width,
                                    const int pooledD,
                                    const int pooledH,
                                    const int pooledW,
                                    const int sizeZ,
                                    const int sizeY,
                                    const int sizeX,
                                    const int strideD,
                                    const int strideH,
                                    const int strideW,
                                    const int padD,
                                    const int padH,
                                    const int padW,
                                    real scaleA,
                                    real scaleB,
                                    real* tgtGrad,
                                    const int outStride) {
  for (int index = blockIdx.x * blockDim.x + threadIdx.x; index < (nthreads);
       index += blockDim.x * gridDim.x) {
    int offsetW = index % width + padW;
    int offsetH = (index / width) % height + padH;
    int offsetD = (index / width / height) % depth + padD;
    int offsetC = (index / width / height / depth) % channels;
    int frameNum = index / width / height / depth / channels;

    int pdstart = (offsetD < sizeZ) ? 0 : (offsetD - sizeZ) / strideD + 1;
    int phstart = (offsetH < sizeY) ? 0 : (offsetH - sizeY) / strideH + 1;
    int pwstart = (offsetW < sizeX) ? 0 : (offsetW - sizeX) / strideW + 1;
    int pdend = min(offsetD / strideD + 1, pooledD);
    int phend = min(offsetH / strideH + 1, pooledH);
    int pwend = min(offsetW / strideW + 1, pooledW);

    real gradient = 0;
    outGrad += (frameNum * channels + offsetC) * pooledD * pooledH * pooledW;

    for (int pd = pdstart; pd < pdend; ++pd) {
729
      int dstart = pd * strideD - padD;
730 731
      int dend = min(dstart + sizeZ, depth);
      dstart = max(dstart, 0);
C
chengduoZH 已提交
732
      for (int ph = phstart; ph < phend; ++ph) {
733
        int hstart = ph * strideH - padH;
734 735
        int hend = min(hstart + sizeY, height);
        hstart = max(hstart, 0);
C
chengduoZH 已提交
736 737 738
        for (int pw = pwstart; pw < pwend; ++pw) {
          // figure out the pooling size
          int wstart = pw * strideW - padW;
739 740
          int wend = min(wstart + sizeX, width);
          wstart = max(wstart, 0);
C
chengduoZH 已提交
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
          int poolsize = (dend - dstart) * (hend - hstart) * (wend - wstart);
          gradient += outGrad[(pd * pooledH + ph) * pooledW + pw] / poolsize;
        }
      }
    }
    tgtGrad[index] = scaleA * gradient + scaleB * tgtGrad[index];
  }
}

void hl_avgpool3D_backward(const int frameCnt,
                           const real* outGrad,
                           const int channels,
                           const int depth,
                           const int height,
                           const int width,
                           const int outputD,
                           const int outputH,
                           const int outputW,
                           const int sizeZ,
                           const int sizeY,
                           const int sizeX,
                           const int strideD,
                           const int strideH,
                           const int strideW,
                           int paddingD,
                           int paddingH,
                           int paddingW,
                           real scaleA,
                           real scaleB,
                           real* backGrad,
                           const int outStride) {
  int num_kernels = depth * height * width * channels * frameCnt;
  int blocks = (num_kernels + 1024 - 1) / 1024;

  KeAvgPool3DBackward<<<blocks, 1024, 0, STREAM_DEFAULT>>>(num_kernels,
                                                           outGrad,
                                                           channels,
                                                           depth,
                                                           height,
                                                           width,
                                                           outputD,
                                                           outputH,
                                                           outputW,
                                                           sizeZ,
                                                           sizeY,
                                                           sizeX,
                                                           strideD,
                                                           strideH,
                                                           strideW,
                                                           paddingD,
                                                           paddingH,
                                                           paddingW,
                                                           scaleA,
                                                           scaleB,
                                                           backGrad,
                                                           outStride);
  CHECK_SYNC("hl_avgpool3D_backward failed");
}

L
liaogang 已提交
800
__global__ void KeBilinearInterpFw(const real* in,
L
liaogang 已提交
801 802 803 804 805 806 807 808 809 810 811 812
                                   const size_t inImgH,
                                   const size_t inImgW,
                                   const size_t inputH,
                                   const size_t inputW,
                                   real* out,
                                   const size_t outImgH,
                                   const size_t outImgW,
                                   const size_t outputH,
                                   const size_t outputW,
                                   const size_t numChannels,
                                   const real ratioH,
                                   const real ratioW) {
L
liaogang 已提交
813
  int nthreads = outputH * outputW;
L
liaogang 已提交
814
  int tid = blockIdx.x * blockDim.x + threadIdx.x;
L
liaogang 已提交
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
  if (tid < nthreads) {
    int outIdH = tid / outputW;
    int outIdW = tid % outputW;
    int inImgSize = inputW / numChannels;
    int outImgSize = outputW / numChannels;
    int channelId = outIdW / outImgSize;

    int outImgIdy = (outIdW % outImgSize) / outImgW;
    int inImgIdy = ratioH * outImgIdy;
    int hId = (inImgIdy < inImgH - 1) ? 1 : 0;
    real h1lambda = ratioH * outImgIdy - inImgIdy;
    real h2lambda = 1.f - h1lambda;

    int outImgIdx = tid % outImgW;
    int inImgIdx = ratioW * outImgIdx;
    int wId = (inImgIdx < inImgW - 1) ? 1 : 0;
    real w1lambda = ratioW * outImgIdx - inImgIdx;
    real w2lambda = 1.f - w1lambda;

L
liaogang 已提交
834 835
    const real* inPos = &in[outIdH * inputW + channelId * inImgSize +
                            inImgIdy * inImgW + inImgIdx];
L
liaogang 已提交
836 837 838

    // bilinear interpolation
    out[outIdH * outputW + outIdW] =
L
liaogang 已提交
839 840 841
        h2lambda * (w2lambda * inPos[0] + w1lambda * inPos[wId]) +
        h1lambda * (w2lambda * inPos[hId * inImgW] +
                    w1lambda * inPos[hId * inImgW + wId]);
L
liaogang 已提交
842 843 844 845 846 847 848 849 850 851 852 853 854
  }
}

void hl_bilinear_forward(const real* inData,
                         const size_t inImgH,
                         const size_t inImgW,
                         const size_t inputH,
                         const size_t inputW,
                         real* outData,
                         const size_t outImgH,
                         const size_t outImgW,
                         const size_t outputH,
                         const size_t outputW,
L
liaogang 已提交
855 856 857 858
                         const size_t numChannels,
                         const real ratioH,
                         const real ratioW) {
  int threadNum = outputH * outputW;
L
liaogang 已提交
859 860
  int blocks = (threadNum + 1024 - 1) / 1024;

L
liaogang 已提交
861 862 863 864 865 866 867 868 869 870 871 872 873
  KeBilinearInterpFw<<<blocks, 1024, 0, STREAM_DEFAULT>>>(inData,
                                                          inImgH,
                                                          inImgW,
                                                          inputH,
                                                          inputW,
                                                          outData,
                                                          outImgH,
                                                          outImgW,
                                                          outputH,
                                                          outputW,
                                                          numChannels,
                                                          ratioH,
                                                          ratioW);
L
liaogang 已提交
874 875 876
  CHECK_SYNC("hl_bilinear_forward failed");
}

L
liaogang 已提交
877
__global__ void KeBilinearInterpBw(real* in,
L
liaogang 已提交
878 879 880 881 882 883 884 885 886 887 888 889
                                   const size_t inImgH,
                                   const size_t inImgW,
                                   const size_t inputH,
                                   const size_t inputW,
                                   const real* out,
                                   const size_t outImgH,
                                   const size_t outImgW,
                                   const size_t outputH,
                                   const size_t outputW,
                                   const size_t numChannels,
                                   const real ratioH,
                                   const real ratioW) {
L
liaogang 已提交
890
  int nthreads = outputH * outputW;
L
liaogang 已提交
891
  int tid = blockIdx.x * blockDim.x + threadIdx.x;
L
liaogang 已提交
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
  if (tid < nthreads) {
    int outIdH = tid / outputW;
    int outIdW = tid % outputW;
    int inImgSize = inputW / numChannels;
    int outImgSize = outputW / numChannels;
    int channelId = outIdW / outImgSize;

    int outImgIdy = (outIdW % outImgSize) / outImgW;
    int inImgIdy = ratioH * outImgIdy;
    int hId = (inImgIdy < inImgH - 1) ? 1 : 0;
    real h1lambda = ratioH * outImgIdy - inImgIdy;
    real h2lambda = 1.f - h1lambda;

    int outImgIdx = tid % outImgW;
    int inImgIdx = ratioW * outImgIdx;
    int wId = (inImgIdx < inImgW - 1) ? 1 : 0;
    real w1lambda = ratioW * outImgIdx - inImgIdx;
    real w2lambda = 1.f - w1lambda;

L
liaogang 已提交
911 912
    real* inPos = &in[outIdH * inputW + channelId * inImgSize +
                      inImgIdy * inImgW + inImgIdx];
L
liaogang 已提交
913
    const real* outPos = &out[outIdH * outputW + outIdW];
L
liaogang 已提交
914 915
    paddle::paddleAtomicAdd(&inPos[0], h2lambda * w2lambda * outPos[0]);
    paddle::paddleAtomicAdd(&inPos[wId], h2lambda * w1lambda * outPos[0]);
L
liaogang 已提交
916 917 918 919
    paddle::paddleAtomicAdd(&inPos[hId * inImgW],
                            h1lambda * w2lambda * outPos[0]);
    paddle::paddleAtomicAdd(&inPos[hId * inImgW + wId],
                            h1lambda * w1lambda * outPos[0]);
L
liaogang 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932
  }
}

void hl_bilinear_backward(real* inGrad,
                          const size_t inImgH,
                          const size_t inImgW,
                          const size_t inputH,
                          const size_t inputW,
                          const real* outGrad,
                          const size_t outImgH,
                          const size_t outImgW,
                          const size_t outputH,
                          const size_t outputW,
L
liaogang 已提交
933 934 935 936
                          const size_t numChannels,
                          const real ratioH,
                          const real ratioW) {
  int threadNum = outputH * outputW;
L
liaogang 已提交
937 938
  int blocks = (threadNum + 1024 - 1) / 1024;

L
liaogang 已提交
939 940 941 942 943 944 945 946 947 948 949 950 951
  KeBilinearInterpBw<<<blocks, 1024, 0, STREAM_DEFAULT>>>(inGrad,
                                                          inImgH,
                                                          inImgW,
                                                          inputH,
                                                          inputW,
                                                          outGrad,
                                                          outImgH,
                                                          outImgW,
                                                          outputH,
                                                          outputW,
                                                          numChannels,
                                                          ratioH,
                                                          ratioW);
L
liaogang 已提交
952
  CHECK_SYNC("hl_bilinear_backward failed");
L
liaogang 已提交
953 954
}

L
liaogang 已提交
955 956 957 958 959 960 961
__global__ void maxoutFpCompute(size_t nthreads,
                                const real* inData,
                                real* outData,
                                int* idData,
                                size_t size,
                                size_t featLen,
                                size_t groups) {
962
  int index = blockIdx.x * blockDim.x + threadIdx.x;
L
liaogang 已提交
963
  if (index < nthreads) {
964 965 966 967
    size_t batch_idx = index / size;
    size_t i = index % size;
    size_t channel_idx = i / featLen;
    size_t feat_idx = i % featLen;
L
liaogang 已提交
968 969
    size_t data_idx =
        (batch_idx * size + channel_idx * featLen) * groups + feat_idx;
970 971 972 973 974 975 976 977 978 979 980 981 982 983
    real max = inData[data_idx];
    int maxId = 0;
    for (size_t g = 1; g < groups; ++g) {
      real tmp = inData[data_idx + g * featLen];
      if (tmp > max) {
        max = tmp;
        maxId = g;
      }
    }
    outData[index] = max;
    idData[index] = maxId;
  }
}

L
liaogang 已提交
984 985 986 987 988 989 990
void hl_maxout_forward(const real* inData,
                       real* outData,
                       int* idData,
                       size_t batchSize,
                       size_t size,
                       size_t featLen,
                       size_t groups) {
991 992
  int num_kernels = size * batchSize;
  int blocks = (num_kernels + 1024 - 1) / 1024;
L
liaogang 已提交
993 994
  maxoutFpCompute<<<blocks, 1024, 0, STREAM_DEFAULT>>>(
      num_kernels, inData, outData, idData, size, featLen, groups);
995 996 997
  CHECK_SYNC("hl_maxout_forward failed");
}

L
liaogang 已提交
998 999 1000 1001 1002 1003 1004
__global__ void maxoutBpCompute(size_t nthreads,
                                real* inGrad,
                                const real* outGrad,
                                const int* idData,
                                size_t size,
                                size_t featLen,
                                size_t groups) {
1005
  int index = blockIdx.x * blockDim.x + threadIdx.x;
L
liaogang 已提交
1006
  if (index < nthreads) {
1007 1008 1009 1010 1011
    size_t batch_idx = index / size;
    size_t i = index % size;
    size_t channel_idx = i / featLen;
    size_t feat_idx = i % featLen;
    size_t newIndex = batch_idx * size;
L
liaogang 已提交
1012 1013
    size_t gradIdx =
        (channel_idx * groups + (idData + newIndex)[i]) * featLen + feat_idx;
1014 1015 1016 1017
    (inGrad + newIndex * groups)[gradIdx] += (outGrad + newIndex)[i];
  }
}

L
liaogang 已提交
1018 1019 1020 1021 1022 1023 1024
void hl_maxout_backward(real* inGrad,
                        const real* outGrad,
                        const int* idData,
                        size_t batchSize,
                        size_t size,
                        size_t featLen,
                        size_t groups) {
1025 1026
  int num_kernels = size * batchSize;
  int blocks = (num_kernels + 1024 - 1) / 1024;
L
liaogang 已提交
1027 1028
  maxoutBpCompute<<<blocks, 1024, 0, STREAM_DEFAULT>>>(
      num_kernels, inGrad, outGrad, idData, size, featLen, groups);
1029 1030
  CHECK_SYNC("hl_maxout_backward failed");
}
X
xzl 已提交
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106

__global__ void upsampleForwardCompute(real* input_data,
                                       real* mask_data,
                                       size_t nthreads,
                                       size_t in_h,
                                       size_t in_w,
                                       size_t out_h,
                                       size_t out_w,
                                       real* output_data) {
  int index = blockIdx.x * blockDim.x + threadIdx.x;
  if (index < nthreads) {
    int offset = index / (in_w * in_h) * out_h * out_w;
    int upsample_idx = static_cast<int>(mask_data[index]);
    output_data[offset + upsample_idx] = input_data[index];
  }
}

__global__ void upsampleBackwardCompute(real* out_grad,
                                        real* mask_data,
                                        size_t nthreads,
                                        size_t in_h,
                                        size_t in_w,
                                        size_t out_h,
                                        size_t out_w,
                                        real* input_grad) {
  int index = blockIdx.x * blockDim.x + threadIdx.x;
  if (index < nthreads) {
    int offset = index / (in_w * in_h) * out_h * out_w;
    int upsample_idx = static_cast<int>(mask_data[index]);
    input_grad[index] = out_grad[offset + upsample_idx];
  }
}

void hl_upsample_forward(real* inputData,
                         real* maskData,
                         size_t batchSize,
                         size_t imgSizeH,
                         size_t imgSizeW,
                         size_t channels,
                         size_t outputH,
                         size_t outputW,
                         real* outputData) {
  int num_kernels = batchSize * imgSizeH * imgSizeW * channels;
  int blocks = (num_kernels + 1024 - 1) / 1024;
  upsampleForwardCompute<<<blocks, 1024, 0, STREAM_DEFAULT>>>(inputData,
                                                              maskData,
                                                              num_kernels,
                                                              imgSizeH,
                                                              imgSizeW,
                                                              outputH,
                                                              outputW,
                                                              outputData);
  CHECK_SYNC("hl_upsample_forward failed");
}

void hl_upsample_backward(real* outputGradData,
                          real* maskData,
                          size_t batchSize,
                          size_t imgSizeH,
                          size_t imgSizeW,
                          size_t channels,
                          size_t outputH,
                          size_t outputW,
                          real* inputGradData) {
  int num_kernels = batchSize * imgSizeH * imgSizeW * channels;
  int blocks = (num_kernels + 1024 - 1) / 1024;
  upsampleBackwardCompute<<<blocks, 1024, 0, STREAM_DEFAULT>>>(outputGradData,
                                                               maskData,
                                                               num_kernels,
                                                               imgSizeH,
                                                               imgSizeW,
                                                               outputH,
                                                               outputW,
                                                               inputGradData);
  CHECK_SYNC("hl_upsample_backward failed");
}