blob: 00d37a3354a4c2ac38cd15d3ee59be63c7df4f99 [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01002 * Copyright (c) 2018 ARM Limited.
Anthony Barbier2a07e182017-08-04 18:20:27 +01003 *
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_GRAPH_TYPES_H__
25#define __ARM_COMPUTE_GRAPH_TYPES_H__
26
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Types.h"
29#include "arm_compute/core/utils/strong_type/StrongType.h"
30#include "arm_compute/core/utils/strong_type/StrongTypeAttributes.h"
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010031
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010032#include <limits>
33#include <string>
Anthony Barbier2a07e182017-08-04 18:20:27 +010034
35namespace arm_compute
36{
37namespace graph
38{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010039using arm_compute::Status;
40
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010041using arm_compute::Coordinates;
42using arm_compute::DataType;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010043using arm_compute::TensorShape;
44using arm_compute::Size2D;
45
46using arm_compute::ActivationLayerInfo;
Georgios Pinitas6f669f02017-09-26 12:32:57 +010047using arm_compute::NormType;
48using arm_compute::NormalizationLayerInfo;
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010049using arm_compute::PadStrideInfo;
Anthony Barbier2a07e182017-08-04 18:20:27 +010050using arm_compute::PoolingLayerInfo;
51using arm_compute::PoolingType;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010052using arm_compute::DimensionRoundingType;
Anthony Barbier2a07e182017-08-04 18:20:27 +010053
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010054/** TODO (geopin01): Make ids strongly typed */
55using TensorID = unsigned int;
56using NodeID = unsigned int;
57using EdgeID = unsigned int;
58using Activation = arm_compute::ActivationLayerInfo::ActivationFunction;
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010059
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010060/**< GraphID strong type */
61using GraphID = strong_type::StrongType<unsigned int, struct graph_id_t, strong_type::Comparable>;
62/* TODO (geopin01): Strong types for NodeID */
63
64/**< Constant TensorID specifying an equivalent of null tensor */
65constexpr TensorID NullTensorID = std::numeric_limits<TensorID>::max();
66/**< Constant NodeID specifying an equivalent of null node */
67constexpr NodeID EmptyNodeID = std::numeric_limits<NodeID>::max();
68/**< Constant EdgeID specifying an equivalent of null edge */
69constexpr EdgeID EmptyEdgeID = std::numeric_limits<EdgeID>::max();
70
71// Forward declarations
72class TensorDescriptor;
73
74/** Graph configuration structure */
75struct GraphConfig
Anthony Barbier2a07e182017-08-04 18:20:27 +010076{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010077 bool use_function_memory_manager{ false }; /**< Use a memory manager to manage per-funcion auxilary memory */
78 bool use_transition_memory_manager{ false }; /**< Use a memory manager to manager transition buffer memory */
79 bool use_tuner{ false }; /**< Use a tuner in tunable backends */
80 unsigned int num_threads{ 0 }; /**< Number of threads to use (thread capable backends), if 0 the backend will auto-initialize */
Anthony Barbier2a07e182017-08-04 18:20:27 +010081};
82
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010083/**< Data layout format */
84enum class DataLayout
Georgios Pinitas6f669f02017-09-26 12:32:57 +010085{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010086 NCHW, /** N(Batches), C(Channels), H(Height), W(Width) from slow to fast moving dimension */
87 NHWC /** N(Batches), H(Height), W(Width), C(Channels) from slow to fast moving dimension */
Georgios Pinitas6f669f02017-09-26 12:32:57 +010088};
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010089
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010090/**< Device target types */
91enum class Target
92{
93 UNSPECIFIED, /**< Unspecified Target */
94 NEON, /**< NEON capable target device */
95 CL, /**< OpenCL capable target device */
96 GC, /**< GLES compute capable target device */
97};
98
99/** Supported Element-wise operations */
100enum class EltwiseOperation
101{
102 ADD, /**< Arithmetic addition */
103 SUB, /**< Arithmetic subtraction */
104 MUL /**< Arithmetic multiplication */
105};
106
107/** Supported Convolution layer methods */
108enum class ConvolutionMethod
109{
110 DEFAULT, /**< Default approach using internal heuristics */
111 GEMM, /**< GEMM based convolution */
112 DIRECT, /**< Deep direct convolution */
113 WINOGRAD /**< Winograd based convolution */
114};
115
116/** Supported Depthwise Convolution layer methods */
117enum class DepthwiseConvolutionMethod
118{
119 DEFAULT, /**< Default approach using internal heuristics */
120 GEMV, /**< Generic GEMV based depthwise convolution */
121 OPTIMIZED_3x3, /**< Optimized 3x3 direct depthwise convolution */
122};
123
124/** Supported nodes */
125enum class NodeType
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100126{
127 ActivationLayer,
128 BatchNormalizationLayer,
129 ConvolutionLayer,
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100130 DepthConcatenateLayer,
Michalis Spyrou7bfe4c52017-11-24 09:54:20 +0000131 DepthwiseConvolutionLayer,
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100132 EltwiseLayer,
Michalis Spyrou27c9efb2017-10-09 15:46:30 +0100133 FlattenLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100134 FullyConnectedLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100135 NormalizationLayer,
136 PoolingLayer,
Michalis Spyrou27c9efb2017-10-09 15:46:30 +0100137 ReshapeLayer,
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100138 SoftmaxLayer,
139 SplitLayer,
140
141 Input,
142 Output,
143 Const,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100144};
145
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100146/** Backend Memory Manager affinity **/
147enum class MemoryManagerAffinity
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100148{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100149 Buffer, /**< Affinity at buffer level */
150 Offset /**< Affinity at offset level */
151};
152
153/** NodeID-index struct
154 *
155 * Used to describe connections
156 */
157struct NodeIdxPair
158{
159 NodeID node_id; /**< Node ID */
160 size_t index; /**< Index */
161};
162
163/** Common node parameters */
164struct NodeParams
165{
166 std::string name; /**< Node name */
167 Target target; /**< Node target */
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100168};
Anthony Barbier2a07e182017-08-04 18:20:27 +0100169} // namespace graph
170} // namespace arm_compute
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100171#endif /* __ARM_COMPUTE_GRAPH_TYPES_H__ */