summaryrefslogtreecommitdiff
path: root/doc
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 /doc
parent469c346a8e0b2be9f3c736c39760548b1749918c (diff)
Added new col2im routine to the documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/routines.md1
-rw-r--r--doc/tuning.md2
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/routines.md b/doc/routines.md
index 7c6a1eb9..a4cb5e57 100644
--- a/doc/routines.md
+++ b/doc/routines.md
@@ -93,6 +93,7 @@ In addition, some extra non-BLAS routines are also supported by CLBlast, classif
| xHAD | ✔ | ✔ | ✔ | ✔ | ✔ | (Hadamard product)
| xOMATCOPY | ✔ | ✔ | ✔ | ✔ | ✔ | (Out-of-place copying/transposing/scaling of matrices)
| xIM2COL | ✔ | ✔ | ✔ | ✔ | ✔ | (Image to column transform as used to express convolution as GEMM)
+| xCOL2IM | ✔ | ✔ | ✔ | ✔ | ✔ | (Column to image transform as used in machine learning)
| xCONVGEMM | ✔ | ✔ | - | - | ✔ | (Experimental, implemented as im2col followed by batched GEMM)
Some less commonly used BLAS routines are not yet supported by CLBlast. They are xROTG, xROTMG, xROT, xROTM, xTBSV, and xTPSV.
diff --git a/doc/tuning.md b/doc/tuning.md
index 6243d135..6b52f4a2 100644
--- a/doc/tuning.md
+++ b/doc/tuning.md
@@ -235,4 +235,4 @@ To find out which tuners to run for which routines, you can use the table below.
| GER GERC GERU HER HER2 HPR HPR2 SPR SPR2 SYR SYR2 | Xger |
| GEMM HEMM HER2K HERK SYMM SYR2K SYRK TRMM GEMMBATCHED GEMMSTRIDEDBATCHED | Xgemm XgemmDirect Copy Pad Transpose Padtranspose |
| TRSM | Xgemm XgemmDirect Copy Pad Transpose Padtranspose Invert |
-| IM2COL | Copy |
+| IM2COL COL2IM | Copy |