mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-11-06 01:34:22 +00:00
Start implementing padding kernel
This commit is contained in:
13
include/kernels/padding.cuh
Normal file
13
include/kernels/padding.cuh
Normal file
@@ -0,0 +1,13 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user