Neural Networks¶
Base¶
Functions
-
void
hl_shrink_col2feature
(const real *dataCol, size_t channels, size_t height, size_t width, size_t blockH, size_t blockW, size_t strideH, size_t strideW, size_t paddingH, size_t paddingW, size_t outputH, size_t outputW, real *dataIm, real alpha = 1.0f, real beta = 0.0f)¶ Shrink column to feature.
- Parameters
dataCol
-expand data.
channels
-number of channel.
height
-image height.
width
-image width.
blockH
-filter height.
blockW
-filter width.
strideH
-stride height.
strideW
-stride width.
paddingH
-padding height.
paddingW
-padding width.
outputH
-output height.
outputW
-output width.
dataIm
-output image data.
alpha
-beta
-
-
void
hl_expand_feature2col
(const real *dataIm, size_t channels, size_t height, size_t width, size_t blockH, size_t blockW, size_t strideH, size_t strideW, size_t paddingH, size_t paddingW, size_t outputH, size_t outputW, real *dataCol)¶ Expand feature to column.
- Parameters
dataIm
-input image data.
channels
-number of channel.
height
-image height.
width
-image width.
blockH
-filter height.
blockW
-filter width.
strideH
-stride height.
strideW
-stride width.
paddingH
-padding height.
paddingW
-padding width.
outputH
-output height.
outputW
-output width.
dataCol
-expand data.
-
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)¶ Maximum pool forward.
- Parameters
frameCnt
-batch size of input image.
inputData
-input data.
channels
-number of channel.
height
-image height.
width
-image width.
pooledH
-output image height.
pooledW
-output image width.
sizeX
-width of pooling window.
sizeY
-height of pooling window.
strideH
-pooling stride height.
strideW
-pooling stride width.
paddingH
-padding height.
paddingW
-padding width.
tgtData
-output data.
-
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)¶ Maximum pool backward.
- Parameters
frameCnt
-batch size of input image.
inputData
-input data.
outData
-output data.
outGrad
-output grad data.
channels
-number of channel.
height
-image height.
width
-image width.
pooledH
-output image height.
pooledW
-output image width.
sizeX
-width of pooling window.
sizeY
-height of pooling window.
strideH
-pooling stride height.
strideW
-pooling stride width.
scaleA
-scale.
scaleB
-scale.
paddingH
-padding height.
paddingW
-padding width.
targetGrad
-output grad.
-
void
hl_avgpool_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)¶ Averge pool forward.
- Parameters
frameCnt
-batch size of input image.
inputData
-input data.
channels
-number of channel.
height
-image height.
width
-image width.
pooledH
-output image height.
pooledW
-output image width.
sizeX
-width of pooling window.
sizeY
-height of pooling window.
strideH
-pooling stride height.
strideW
-pooling stride width.
paddingH
-padding height.
paddingW
-padding width.
tgtData
-output data.
-
void
hl_avgpool_backward
(const int frameCnt, 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, int paddingH, int paddingW, real scaleA, real scaleB, real *backGrad)¶ Maximum pool backward.
- Parameters
frameCnt
-batch size of input image.
outGrad
-input data.
channels
-number of channel.
height
-image height.
width
-image width.
pooledH
-output image height.
pooledW
-output image width.
sizeX
-width of pooling window.
sizeY
-height of pooling window.
strideH
-pooling stride height.
strideW
-pooling stride width.
paddingH
-padding height.
paddingW
-padding width.
scaleA
-scale.
scaleB
-scale.
backGrad
-output grad.
-
void
hl_CMRNorm_forward
(size_t frameCnt, const real *in, real *scale, real *out, size_t channels, size_t height, size_t width, size_t sizeX, real alpha, real beta)¶ Cross-map-respose normalize forward.
- Parameters
frameCnt
-batch size of input image.
in
-input data.
scale
-buffer.
out
-output data.
channels
-number of channel.
height
-image height.
width
-image width.
sizeX
-size.
alpha
-scale.
beta
-scale.
-
void
hl_CMRNorm_backward
(size_t frameCnt, const real *inV, const real *scale, const real *outV, const real *outDiff, real *inDiff, size_t channels, size_t height, size_t width, size_t sizeX, real alpha, real beta)¶ Cross-map-respose normalize backward.
- Parameters
frameCnt
-batch size of input image.
inV
-input data.
scale
-buffer.
outV
-output value.
outDiff
-output grad.
inDiff
-input grad.
channels
-number of channel.
height
-image height.
width
-image width.
sizeX
-size.
alpha
-scale.
beta
-scale.
Defines
-
SIGMOID_THRESHOLD_MIN
¶ sigmoid threshold maximum
-
SIGMOID_THRESHOLD_MAX
¶ sigmoid threshold minimum
-
namespace
hppl
¶
-
namespace
hppl
¶ Functions
-
__m256
relu
(const __m256 a)¶
-
__m256
sigmoid
(const __m256 a)¶
-
__m256
tanh
(const __m256 a)¶
-
__m256
linear
(const __m256 a)¶
-
__m256
relu
(const __m256 a, const __m256 b)¶
-
__m256
sigmoid
(const __m256 a, const __m256 b)¶
-
__m256
tanh
(const __m256 a, const __m256 b)¶
-
__m256
linear
(const __m256 a, const __m256 b)¶
-
__m256
Defines
-
HL_DEVICE_FUNCTIONS_CUH_
¶
-
namespace
paddle
¶ Functions
- template <class T>
-
__device__ T paddle::paddleAtomicAdd(T * address, T val)
- template <>
-
__device__ float paddle::paddleAtomicAdd(float * address, float val)
- template <>
-
__device__ double paddle::paddleAtomicAdd(double * address, double val)
Defines
-
HL_GPU_FUNCTIONS_CUH_
¶