blob: 7083270a0714f773349d2235f1b0eab3f02686e2 [file] [log] [blame]
Sheri Zhangd813bab2021-04-30 16:53:41 +01001///
2/// Copyright (c) 2021 Arm Limited.
3///
4/// SPDX-License-Identifier: MIT
5///
6/// Permission is hereby granted, free of charge, to any person obtaining a copy
7/// of this software and associated documentation files (the "Software"), to
8/// deal in the Software without restriction, including without limitation the
9/// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10/// sell copies of the Software, and to permit persons to whom the Software is
11/// furnished to do so, subject to the following conditions:
12///
13/// The above copyright notice and this permission notice shall be included in all
14/// copies or substantial portions of the Software.
15///
16/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22/// SOFTWARE.
23///
24namespace arm_compute
25{
26/**
27@page data_type_support Data Type Support
28
29@tableofcontents
30
31@section data_type_support_supported_data_type Supported Data Types
32
33Compute Library supports the following list of data types. More detailed information
34can be found from the documentation of each operator since the data types supported
35by each operator vary.
36
37- BFLOAT16: 16-bit non-standard brain floating point
38- QASYMM8: 8-bit unsigned asymmetric quantized
39- QASYMM8_SIGNED: 8-bit signed asymmetric quantized
40- QSYMM8_PER_CHANNEL: 8-bit signed symmetric quantized (Used for the weights)
41- QSYMM8: 8-bit unsigned symmetric quantized
42- QSYMM16: 16-bit unsigned symmetric quantized
43- F32: 32-bit single precision floating point
44- F16: 16-bit half precision floating point
45- S32: 32-bit signed integer
46*/
47} // namespace