summaryrefslogtreecommitdiff
path: root/doc/api.md
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-11-07 19:45:07 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2018-11-07 19:45:07 +0100
commit6f67525ea693d0761c479b060c04ce93d408beb5 (patch)
tree8e76bcfa9bf9d067a3969c70023634c66a9657f4 /doc/api.md
parent2d32a23293cdc5e0e34160e9ee4f15dc824592b3 (diff)
Changed col2im to append to the existing im-buffer
Diffstat (limited to 'doc/api.md')
-rw-r--r--doc/api.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api.md b/doc/api.md
index 64b4a1c8..337b5af9 100644
--- a/doc/api.md
+++ b/doc/api.md
@@ -3015,7 +3015,7 @@ Requirements for OMATCOPY:
xIM2COL: Im2col function (non-BLAS function)
-------------
-Performs the im2col algorithm, in which _im_ is the input matrix and _col_ is the output matrix.
+Performs the im2col algorithm, in which _im_ is the input matrix and _col_ is the output matrix. Overwrites any existing values in the _col_ buffer
C++ API:
```
@@ -3075,7 +3075,7 @@ Arguments to IM2COL:
xCOL2IM: Col2im function (non-BLAS function)
-------------
-Performs the col2im algorithm, in which _col_ is the input matrix and _im_ is the output matrix.
+Performs the col2im algorithm, in which _col_ is the input matrix and _im_ is the output matrix. Accumulates results on top of the existing values in the _im_ buffer.
C++ API:
```