Refactor kernels

This commit is contained in:
2024-03-19 21:37:25 +01:00
parent b6c4b7d2ae
commit 364715ff70
3 changed files with 14 additions and 8 deletions

View File

@@ -2,7 +2,9 @@
#include "convolution.cuh"
__global__ void CUDANet::Kernels::convolution(
using namespace CUDANet::Kernels;
__global__ void convolution(
const float* __restrict__ d_input,
const float* __restrict__ d_kernel,
float* __restrict__ d_output,