Skip to content

Commit

Permalink
add s8 to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
verstatx committed Oct 16, 2023
1 parent 866e01b commit 94e7674
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/details/algorithm.dox
Expand Up @@ -22,7 +22,7 @@ Input Type | Output Type
--------------------|---------------------
f32, f64, c32, c64 | same as input
s32, s64, u32, u64 | same as input
s16 | s32
s16, s8 | s32
u16, u8, b8 | u32

\copydoc batch_detail_algo
Expand Down Expand Up @@ -54,7 +54,7 @@ Input Type | Output Type
--------------------|---------------------
f32, f64, c32, c64 | same as input
s32, s64, u32, u64 | same as input
s16 | s32
s16, s8 | s32
u16, u8, b8 | u32
f16 | f32

Expand All @@ -76,7 +76,7 @@ Input Type | Output Type
--------------------|---------------------
f32, f64, c32, c64 | same as input
s32, u32, s64, u64 | same as input
s16 | s32
s16, s8 | s32
u16, u8, b8 | u32

\copydoc batch_detail_algo
Expand Down Expand Up @@ -108,7 +108,7 @@ Input Type | Output Type
--------------------|---------------------
f32, f64, c32, c64 | same as input
s32, u32, s64, u64 | same as input
s16 | s32
s16, s8 | s32
u16, u8, b8 | u32
f16 | f32

Expand Down Expand Up @@ -340,7 +340,7 @@ Input Type | Output Type
--------------------|---------------------
f32, f64, c32, c64 | same as input
s32, s64, u32, u64 | same as input
s16 | s32
s16, s8 | s32
u16, u8, b8 | u32

\copydoc batch_detail_algo
Expand Down
2 changes: 2 additions & 0 deletions docs/details/image.dox
Expand Up @@ -1007,6 +1007,7 @@ Iterative deconvolution function excepts \ref af::array of the following types o
- \ref f32
- \ref s16
- \ref u16
- \ref s8
- \ref u8

\note The type of output \ref af::array from deconvolution will be double if
Expand Down Expand Up @@ -1044,6 +1045,7 @@ Inverse deconvolution function excepts \ref af::array of the following types onl
- \ref f32
- \ref s16
- \ref u16
- \ref s8
- \ref u8

\note The type of output \ref af::array from deconvolution will be double
Expand Down
3 changes: 2 additions & 1 deletion docs/pages/getting_started.md
Expand Up @@ -28,7 +28,8 @@ can represent one of many different [basic data types](\ref af_dtype):
* [b8](\ref b8) 8-bit boolean values (`bool`)
* [s32](\ref s32) 32-bit signed integer (`int`)
* [u32](\ref u32) 32-bit unsigned integer (`unsigned`)
* [u8](\ref u8) 8-bit unsigned values (`unsigned char`)
* [s8](\ref s8) 8-bit signed integer (`signed char`)
* [u8](\ref u8) 8-bit unsigned integer (`unsigned char`)
* [s64](\ref s64) 64-bit signed integer (`intl`)
* [u64](\ref u64) 64-bit unsigned integer (`uintl`)
* [s16](\ref s16) 16-bit signed integer (`short`)
Expand Down

0 comments on commit 94e7674

Please sign in to comment.