blob: 2df9998fcff31061a9577d1c437ae588ef71e9b6 [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;
Georgios Pinitas57c48242018-08-02 13:41:49 +010047using arm_compute::PermutationVector;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010048
49using arm_compute::ActivationLayerInfo;
Georgios Pinitas6f669f02017-09-26 12:32:57 +010050using arm_compute::NormType;
51using arm_compute::NormalizationLayerInfo;
Georgios Pinitasc55cef12018-08-01 15:24:18 +010052using arm_compute::FullyConnectedLayerInfo;
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010053using arm_compute::PadStrideInfo;
Anthony Barbier2a07e182017-08-04 18:20:27 +010054using arm_compute::PoolingLayerInfo;
55using arm_compute::PoolingType;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010056using arm_compute::DimensionRoundingType;
Georgios Pinitas087eaf62018-05-16 15:52:35 +010057using arm_compute::InterpolationPolicy;
Anthony Barbier2a07e182017-08-04 18:20:27 +010058
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010059/** TODO (geopin01): Make ids strongly typed */
60using TensorID = unsigned int;
61using NodeID = unsigned int;
62using EdgeID = unsigned int;
63using Activation = arm_compute::ActivationLayerInfo::ActivationFunction;
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010064
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010065/**< GraphID strong type */
66using GraphID = strong_type::StrongType<unsigned int, struct graph_id_t, strong_type::Comparable>;
67/* TODO (geopin01): Strong types for NodeID */
68
69/**< Constant TensorID specifying an equivalent of null tensor */
70constexpr TensorID NullTensorID = std::numeric_limits<TensorID>::max();
71/**< Constant NodeID specifying an equivalent of null node */
72constexpr NodeID EmptyNodeID = std::numeric_limits<NodeID>::max();
73/**< Constant EdgeID specifying an equivalent of null edge */
74constexpr EdgeID EmptyEdgeID = std::numeric_limits<EdgeID>::max();
75
76// Forward declarations
77class TensorDescriptor;
78
79/** Graph configuration structure */
80struct GraphConfig
Anthony Barbier2a07e182017-08-04 18:20:27 +010081{
Anthony Barbier7b607dc2018-07-13 15:55:24 +010082 bool use_function_memory_manager{ true }; /**< Use a memory manager to manage per-funcion auxilary memory */
83 bool use_transition_memory_manager{ true }; /**< Use a memory manager to manager transition buffer memory */
84 bool use_tuner{ false }; /**< Use a tuner in tunable backends */
85 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. */
86 std::string tuner_file{ "acl_tuner.csv" }; /**< File to load/store tuning values from */
Anthony Barbier2a07e182017-08-04 18:20:27 +010087};
88
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010089/**< Device target types */
90enum class Target
91{
92 UNSPECIFIED, /**< Unspecified Target */
93 NEON, /**< NEON capable target device */
94 CL, /**< OpenCL capable target device */
95 GC, /**< GLES compute capable target device */
96};
97
98/** Supported Element-wise operations */
99enum class EltwiseOperation
100{
Georgios Pinitase2220552018-07-20 13:23:44 +0100101 Add, /**< Arithmetic addition */
102 Sub, /**< Arithmetic subtraction */
103 Mul /**< Arithmetic multiplication */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100104};
105
106/** Supported Convolution layer methods */
107enum class ConvolutionMethod
108{
Georgios Pinitase2220552018-07-20 13:23:44 +0100109 Default, /**< Default approach using internal heuristics */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100110 GEMM, /**< GEMM based convolution */
Georgios Pinitase2220552018-07-20 13:23:44 +0100111 Direct, /**< Deep direct convolution */
112 Winograd /**< Winograd based convolution */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100113};
114
115/** Supported Depthwise Convolution layer methods */
116enum class DepthwiseConvolutionMethod
117{
Georgios Pinitase2220552018-07-20 13:23:44 +0100118 Default, /**< Default approach using internal heuristics */
119 GEMV, /**< Generic GEMV based depthwise convolution */
120 Optimized3x3, /**< Optimized 3x3 direct depthwise convolution */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100121};
122
Giorgio Arena59631a12018-05-02 13:59:04 +0100123/** Enable or disable fast math for Convolution layer */
124enum class FastMathHint
125{
Georgios Pinitase2220552018-07-20 13:23:44 +0100126 Enabled, /**< Fast math enabled for Convolution layer */
127 Disabled, /**< Fast math disabled for Convolution layer */
Giorgio Arena59631a12018-05-02 13:59:04 +0100128};
129
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100130/** Supported nodes */
131enum class NodeType
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100132{
133 ActivationLayer,
134 BatchNormalizationLayer,
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100135 ChannelShuffleLayer,
Georgios Pinitase2220552018-07-20 13:23:44 +0100136 ConcatenateLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100137 ConvolutionLayer,
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100138 DeconvolutionLayer,
Michalis Spyrou7bfe4c52017-11-24 09:54:20 +0000139 DepthwiseConvolutionLayer,
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100140 EltwiseLayer,
Michalis Spyrou27c9efb2017-10-09 15:46:30 +0100141 FlattenLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100142 FullyConnectedLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100143 NormalizationLayer,
Georgios Pinitas57c48242018-08-02 13:41:49 +0100144 PermuteLayer,
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100145 PoolingLayer,
Michalis Spyrou27c9efb2017-10-09 15:46:30 +0100146 ReshapeLayer,
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100147 ResizeLayer,
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100148 SoftmaxLayer,
149 SplitLayer,
150
151 Input,
152 Output,
153 Const,
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100154
155 Dummy
Georgios Pinitas407c3e62017-10-25 18:26:46 +0100156};
157
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100158/** Backend Memory Manager affinity **/
159enum class MemoryManagerAffinity
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100160{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100161 Buffer, /**< Affinity at buffer level */
162 Offset /**< Affinity at offset level */
163};
164
165/** NodeID-index struct
166 *
167 * Used to describe connections
168 */
169struct NodeIdxPair
170{
171 NodeID node_id; /**< Node ID */
172 size_t index; /**< Index */
173};
174
175/** Common node parameters */
176struct NodeParams
177{
178 std::string name; /**< Node name */
179 Target target; /**< Node target */
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100180};
Anthony Barbier2a07e182017-08-04 18:20:27 +0100181} // namespace graph
182} // namespace arm_compute
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100183#endif /* __ARM_COMPUTE_GRAPH_TYPES_H__ */