summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-11-01 21:46:19 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2018-11-01 21:46:19 +0100
commit2d32a23293cdc5e0e34160e9ee4f15dc824592b3 (patch)
tree4221e55131ae99f8b2f4f034f7d2de0a74001cd7 /src
parent469c346a8e0b2be9f3c736c39760548b1749918c (diff)
Added new col2im routine to the documentation
Diffstat (limited to 'src')
-rw-r--r--src/kernels/levelx/col2im.opencl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernels/levelx/col2im.opencl b/src/kernels/levelx/col2im.opencl
index 44908ca1..5cadeec6 100644
--- a/src/kernels/levelx/col2im.opencl
+++ b/src/kernels/levelx/col2im.opencl
@@ -80,7 +80,7 @@ void col2im(const int input_h, const int input_w, const int channels,
}
}
- // Sets the input value
+ // Sets the resulting value
const int input_index = w_index + input_w * (h_index + input_h * c_id);
im_buffer[input_index + im_offset] = val;
}