blob: f52beab523e629872a6746fcc3724121f5fe8d8a [file] [log] [blame]
Isabella Gottardi0ae5de92019-03-14 10:32:11 +00001/*
2 * Copyright (c) 2019 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 */
24#ifndef __ARM_COMPUTE_CONCAT_DESCRIPTOR_H__
25#define __ARM_COMPUTE_CONCAT_DESCRIPTOR_H__
26
27#include "arm_compute/core/Types.h"
28
29namespace arm_compute
30{
31namespace graph
32{
33namespace descriptors
34{
Georgios Pinitas9e4824c2019-04-12 13:15:58 +010035/** Concatenate layer descriptor */
Isabella Gottardi0ae5de92019-03-14 10:32:11 +000036struct ConcatLayerDescriptor
37{
38 /** Default constructor */
39 ConcatLayerDescriptor()
40 : axis(DataLayoutDimension::CHANNEL), output_qinfo()
41 {
42 }
43
44 /** Constructor concatenate layer descriptor
45 *
46 * @param[in] axis Axis.
47 */
48 ConcatLayerDescriptor(DataLayoutDimension axis)
49 : axis(axis), output_qinfo()
50 {
51 }
52
53 /** Constructor concatenate layer descriptor
54 *
55 * @param[in] axis Axis.
56 * @param[in] output_qinfo Output quantization info.
57 */
58 ConcatLayerDescriptor(DataLayoutDimension axis, QuantizationInfo output_qinfo)
59 : axis(axis), output_qinfo(output_qinfo)
60 {
61 }
62
63 const DataLayoutDimension axis; /**< Concatenation Axis */
64 const QuantizationInfo output_qinfo; /**< Output quantizazion info */
65};
66} // namespace descriptor
67} // namespace graph
68} // namespace arm_compute
69#endif /* __ARM_COMPUTE_CONCAT_DESCRIPTOR_H__ */