Start implementing padding kernel

This commit is contained in:
2024-02-29 22:21:48 +01:00
parent 045359cca2
commit 019ccc33d9
5 changed files with 158 additions and 1 deletions

View 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