mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-11-05 17:34:21 +00:00
18 lines
267 B
Plaintext
18 lines
267 B
Plaintext
#ifndef PADDING_H
|
|
#define PADDING_H
|
|
|
|
__global__ void pad_matrix_kernel(
|
|
const float* d_input,
|
|
float* d_padded,
|
|
int w,
|
|
int h,
|
|
int n,
|
|
int p
|
|
);
|
|
|
|
enum Padding {
|
|
SAME,
|
|
VALID
|
|
};
|
|
|
|
#endif // PADDING_H |