mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-11-06 17:54:27 +00:00
13 lines
228 B
Plaintext
13 lines
228 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
|
|
);
|
|
|
|
#endif // PADDING_H |