Skip to content
Snippets Groups Projects
Commit 9c8427cb authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed typo

parent a2097822
No related branches found
No related tags found
1 merge request!166Update 0.5.0 -> 0.6.0
Pipeline #71234 passed
...@@ -631,7 +631,7 @@ void ConvImpl2D_cpu_forward_kernel(const array<DimSize_t, 2> &strideDims, ...@@ -631,7 +631,7 @@ void ConvImpl2D_cpu_forward_kernel(const array<DimSize_t, 2> &strideDims,
iIndex_channel += iIndex_channel +=
inputDims[3] * strideDims[0]) { inputDims[3] * strideDims[0]) {
// loop over associated input line // loop over associated input line
for (std::size_t ky = 0, ix = 0; ky < kernelDims[0]; for (std::size_t ky = 0, ix = 0; ky < kernelDims[1];
++ky, ix += inputDims[3] * dilationDims[0]) { ++ky, ix += inputDims[3] * dilationDims[0]) {
// loop over the entire line // loop over the entire line
for (std::size_t oy = 0, iy = 0; oy < oySize; for (std::size_t oy = 0, iy = 0; oy < oySize;
......
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