Rename dim2d to shape2d

This commit is contained in:
2024-05-27 21:14:51 +02:00
parent 07d505a0e5
commit df47a31f36
22 changed files with 120 additions and 120 deletions

View File

@@ -25,13 +25,13 @@ __global__ void convolution(
const float* __restrict__ d_kernel,
const float* __restrict__ d_bias,
float* __restrict__ d_output,
const dim2d inputSize,
const shape2d inputSize,
const int nChannels,
const dim2d paddingSize,
const dim2d kernelSize,
const dim2d stride,
const shape2d paddingSize,
const shape2d kernelSize,
const shape2d stride,
const int nFilters,
const dim2d outputSize
const shape2d outputSize
);
} // namespace CUDANet::Kernels