blob: ee0bf429ad93532b018adaba1e24d504da9b7efe [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 Pinitascac13b12018-04-27 19:07:19 +010043using arm_compute::DataLayout;
44using arm_compute::DataLayoutDimension;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010045using arm_compute::TensorShape;
46using arm_compute::Size2D;
47
48using arm_compute::ActivationLayerInfo;
Georgios Pinitas6f669f02017-09-26 12:32:57 +010049using arm_compute::NormType;
50using arm_compute::NormalizationLayerInfo;
Georgios Pinitasc55cef12018-08-01 15:24:18 +010051using arm_compute::FullyConnectedLayerInfo;
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010052using arm_compute::PadStrideInfo;
Anthony Barbier2a07e182017-08-04 18:20:27 +010053using arm_compute::PoolingLayerInfo;
54using arm_compute::PoolingType;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010055using arm_compute::DimensionRoundingType;
Georgios Pinitas087eaf62018-05-16 15:52:35 +010056using arm_compute::InterpolationPolicy;
Anthony Barbier2a07e182017-08-04 18:20:27 +010057
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010058/** TODO (geopin01): Make ids strongly typed */
59using TensorID = unsigned int;
60using NodeID = unsigned int;
61using EdgeID = unsigned int;
62using Activation = arm_compute::ActivationLayerInfo::ActivationFunction;
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010063
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010064/**< GraphID strong type */
65using GraphID = strong_type::StrongType<unsigned int, struct graph_id_t, strong_type::Comparable>;
66/* TODO (geopin01): Strong types for NodeID */
67
68/**< Constant TensorID specifying an equivalent of null tensor */
69constexpr TensorID NullTensorID = std::numeric_limits<TensorID>::max();
70/**< Constant NodeID specifying an equivalent of null node */
71constexpr NodeID EmptyNodeID = std::numeric_limits<NodeID>::max();
72/**< Constant EdgeID specifying an equivalent of null edge */
73constexpr EdgeID EmptyEdgeID = std::numeric_limits<EdgeID>::max();
74
75// Forward declarations
76class TensorDescriptor;
77
78/** Graph configuration structure */
79struct GraphConfig
Anthony Barbier2a07e182017-08-04 18:20:27 +010080{
Anthony Barbier7b607dc2018-07-13 15:55:24 +010081 bool use_function_memory_manager{ true }; /**< Use a memory manager to manage per-funcion auxilary memory */
82 bool use_transition_memory_manager{ true }; /**< Use a memory manager to manager transition buffer memory */
83 bool use_tuner{ false }; /**< Use a tuner in tunable backends */
84 int num_threads{ -1 }; /**< Number of threads to use (thread capable backends), if 0 the backend will auto-initialize, if -1 the backend will stay as it is. */
85 std::string tuner_file{ "acl_tuner.csv" }; /**< File to load/store tuning values from */
Anthony Barbier2a07e182017-08-04 18:20:27 +010086};
87
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010088/**< Device target types */
89enum class Target
90{
91 UNSPECIFIED, /**< Unspecified Target */
92 NEON, /**< NEON capable target device */
93 CL, /**< OpenCL capable target device */
94 GC, /**< GLES compute capable target device */
95};
96
97/** Supported Element-wise operations */
98enum class EltwiseOperation
99{
Georgios Pinitase2220552018-07-20 13:23:44 +0100100 Add, /**< Arithmetic addition */
101 Sub, /**< Arithmetic subtraction */
102 Mul /**< Arithmetic multiplication */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100103};
104
105/** Supported Convolution layer methods */
106enum class ConvolutionMethod
107{
Georgios Pinitase2220552018-07-20 13:23:44 +0100108 Default, /**< Default approach using internal heuristics */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100109 GEMM, /**< GEMM based convolution */
Georgios Pinitase2220552018-07-20 13:23:44 +0100110 Direct, /**< Deep direct convolution */
111 Winograd /**< Winograd based convolution */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100112};
113
114/** Supported Depthwise Convolution layer methods */
115enum class DepthwiseConvolutionMethod
116{
Georgios Pinitase2220552018-07-20 13:23:44 +0100117 Default, /**< Default approach using internal heuristics */
118 GEMV, /**< Generic GEMV based depthwise convolution */
119 Optimized3x3, /**< Optimized 3x3 direct depthwise convolution */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100120};
121
Giorgio Arena59631a12018-05-02 13:59:04 +0100122/** Enable or disable fast math for Convolution layer */
123enum class FastMathHint
124{
Georgios Pinitase2220552018-07-20 13:23:44 +0100125 Enabled, /**< Fast math enabled for Convolution layer */
126 Disabled, /**< Fast math disabled for Convolution layer */
Giorgio Arena59631a12018-05-02 13:59:04 +0100127};
128
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100129/** Supported nodes */
130enum class NodeType
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100131{
132 ActivationLayer,
133 BatchNormalizationLayer,
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100134 ChannelShuffleLayer,
Georgios Pinitase2220552018-07-20 13:23:44 +0100135 ConcatenateLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100136 ConvolutionLayer,
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100137 DeconvolutionLayer,
Michalis Spyrou7bfe4c52017-11-24 09:54:20 +0000138 DepthwiseConvolutionLayer,
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100139 EltwiseLayer,
Michalis Spyrou27c9efb2017-10-09 15:46:30 +0100140 FlattenLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100141 FullyConnectedLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100142 NormalizationLayer,
143 PoolingLayer,
Michalis Spyrou27c9efb2017-10-09 15:46:30 +0100144 ReshapeLayer,
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100145 ResizeLayer,
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100146 SoftmaxLayer,
147 SplitLayer,
148
149 Input,
150 Output,
151 Const,
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100152
153 Dummy
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100154};
155
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100156/** Backend Memory Manager affinity **/
157enum class MemoryManagerAffinity
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100158{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100159 Buffer, /**< Affinity at buffer level */
160 Offset /**< Affinity at offset level */
161};
162
163/** NodeID-index struct
164 *
165 * Used to describe connections
166 */
167struct NodeIdxPair
168{
169 NodeID node_id; /**< Node ID */
170 size_t index; /**< Index */
171};
172
173/** Common node parameters */
174struct NodeParams
175{
176 std::string name; /**< Node name */
177 Target target; /**< Node target */
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100178};
Anthony Barbier2a07e182017-08-04 18:20:27 +0100179} // namespace graph
180} // namespace arm_compute
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100181#endif /* __ARM_COMPUTE_GRAPH_TYPES_H__ */