From 95b94e09a9177b1ed216cedc1e07622897eb15ca Mon Sep 17 00:00:00 2001 From: hrouis <houssemeddine.rouis92@gmail.com> Date: Wed, 28 Feb 2024 16:02:54 +0100 Subject: [PATCH] test 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