From 3ce6135f504b6c9717616e6c557522fca3496630 Mon Sep 17 00:00:00 2001 From: hrouis <houssemeddine.rouis92@gmail.com> Date: Wed, 28 Feb 2024 16:09:36 +0100 Subject: [PATCH] test2 reload CI --- src/operator/FCImpl_CUDA_kernels.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/FCImpl_CUDA_kernels.cu b/src/operator/FCImpl_CUDA_kernels.cu index f263f15..cf98aab 100644 --- a/src/operator/FCImpl_CUDA_kernels.cu +++ b/src/operator/FCImpl_CUDA_kernels.cu @@ -25,7 +25,7 @@ void fc_forward_cuda_kernel(std::size_t nbInputs, std::size_t inChannels, std::s for (std::size_t in = 0; in < inChannels; ++in) { sum += input[batch * inChannels + in] * weights[out * inChannels + in]; } - output[batch * outChannels + out] = sum + (noBias ? 0 : bias[out]); + output[batch * outChannels + out] = sum + (noBias ? 0 : bias[out]); } } } -- GitLab