From 435b6c510293989624a4a8509807b9fd16b4aa31 Mon Sep 17 00:00:00 2001 From: hrouis <houssemeddine.rouis92@gmail.com> Date: Wed, 28 Feb 2024 16:20:01 +0100 Subject: [PATCH] test3 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 cf98aab..f263f15 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