Skip to content
Snippets Groups Projects
Commit 95b94e09 authored by Houssem ROUIS's avatar Houssem ROUIS
Browse files

test reload CI

parent 0efec0ee
No related branches found
No related tags found
No related merge requests found
Pipeline #40173 failed
......@@ -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]);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment