blob: 2fa402980712a65363cd7346a791ffa52c0c9b12 [file] [log] [blame]
Michel Iwaniec5dfeae62017-11-29 10:48:23 +00001/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to
6 * deal in the Software without restriction, including without limitation the
7 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8 * sell copies of the Software, and to permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in all
12 * copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22#ifndef __ARM_COMPUTE_QASYMM8_H__
23#define __ARM_COMPUTE_QASYMM8_H__
24
25#include "arm_compute/core/Rounding.h"
26#include <cstdint>
27
28namespace arm_compute
29{
30using qasymm8_t = uint8_t; /**< 8 bit quantized asymmetric scalar value */
31}
32#include "arm_compute/core/QAsymm8.inl"
33#endif /* __ARM_COMPUTE_QASYMM8_H__ */