blob: 759581862806347ca6d7f9167ae25a8c19f53918 [file] [log] [blame]
Kevin May43a799c2019-02-08 16:31:42 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include "armnn/INetwork.hpp"
Derek Lamberti0028d1b2019-02-20 13:57:42 +00009#include "armnnDeserializer/IDeserializer.hpp"
Matthew Bentham268509a2019-02-25 13:58:24 +000010#include <ArmnnSchema_generated.h>
Kevin May43a799c2019-02-08 16:31:42 +000011
Derek Lamberti0028d1b2019-02-20 13:57:42 +000012namespace armnnDeserializer
Kevin May43a799c2019-02-08 16:31:42 +000013{
Derek Lamberti0028d1b2019-02-20 13:57:42 +000014class Deserializer : public IDeserializer
Kevin May43a799c2019-02-08 16:31:42 +000015{
16public:
17 // Shorthands for deserializer types
Derek Lamberti0028d1b2019-02-20 13:57:42 +000018 using ConstTensorRawPtr = const armnnSerializer::ConstTensor *;
19 using GraphPtr = const armnnSerializer::SerializedGraph *;
20 using TensorRawPtr = const armnnSerializer::TensorInfo *;
21 using PoolingDescriptor = const armnnSerializer::Pooling2dDescriptor *;
Nina Drozd57728782019-02-27 10:53:27 +000022 using NormalizationDescriptorPtr = const armnnSerializer::NormalizationDescriptor *;
Kevin May43a799c2019-02-08 16:31:42 +000023 using TensorRawPtrVector = std::vector<TensorRawPtr>;
Derek Lamberti0028d1b2019-02-20 13:57:42 +000024 using LayerRawPtr = const armnnSerializer::LayerBase *;
25 using LayerBaseRawPtr = const armnnSerializer::LayerBase *;
Kevin May43a799c2019-02-08 16:31:42 +000026 using LayerBaseRawPtrVector = std::vector<LayerBaseRawPtr>;
27
28public:
29
Derek Lamberti2b183fb2019-02-18 16:36:57 +000030 /// Create an input network from binary file contents
31 armnn::INetworkPtr CreateNetworkFromBinary(const std::vector<uint8_t>& binaryContent) override;
Kevin May43a799c2019-02-08 16:31:42 +000032
Derek Lamberti2b183fb2019-02-18 16:36:57 +000033 /// Create an input network from a binary input stream
34 armnn::INetworkPtr CreateNetworkFromBinary(std::istream& binaryContent) override;
Kevin May43a799c2019-02-08 16:31:42 +000035
36 /// Retrieve binding info (layer id and tensor info) for the network input identified by the given layer name
Derek Lamberti2b183fb2019-02-18 16:36:57 +000037 BindingPointInfo GetNetworkInputBindingInfo(unsigned int layerId, const std::string& name) const override;
Kevin May43a799c2019-02-08 16:31:42 +000038
39 /// Retrieve binding info (layer id and tensor info) for the network output identified by the given layer name
Derek Lamberti2b183fb2019-02-18 16:36:57 +000040 BindingPointInfo GetNetworkOutputBindingInfo(unsigned int layerId, const std::string& name) const override;
Kevin May43a799c2019-02-08 16:31:42 +000041
Derek Lamberti0028d1b2019-02-20 13:57:42 +000042 Deserializer();
43 ~Deserializer() {}
Kevin May43a799c2019-02-08 16:31:42 +000044
45public:
46 // testable helpers
Kevin May43a799c2019-02-08 16:31:42 +000047 static GraphPtr LoadGraphFromBinary(const uint8_t* binaryContent, size_t len);
48 static TensorRawPtrVector GetInputs(const GraphPtr& graph, unsigned int layerIndex);
49 static TensorRawPtrVector GetOutputs(const GraphPtr& graph, unsigned int layerIndex);
50 static LayerBaseRawPtrVector GetGraphInputs(const GraphPtr& graphPtr);
51 static LayerBaseRawPtrVector GetGraphOutputs(const GraphPtr& graphPtr);
52 static LayerBaseRawPtr GetBaseLayer(const GraphPtr& graphPtr, unsigned int layerIndex);
53 static int32_t GetBindingLayerInfo(const GraphPtr& graphPtr, unsigned int layerIndex);
Éanna Ó Catháin633f8592019-02-25 16:26:29 +000054 static std::string GetLayerName(const GraphPtr& graph, unsigned int index);
Nina Drozd57728782019-02-27 10:53:27 +000055 static armnn::Pooling2dDescriptor GetPoolingDescriptor(PoolingDescriptor pooling2dDescriptor,
56 unsigned int layerIndex);
57 static armnn::NormalizationDescriptor GetNormalizationDescriptor(
58 NormalizationDescriptorPtr normalizationDescriptor, unsigned int layerIndex);
Saoirse Stewart263829c2019-02-19 15:54:14 +000059 static armnn::TensorInfo OutputShapeOfReshape(const armnn::TensorInfo & inputTensorInfo,
60 const std::vector<uint32_t> & targetDimsIn);
Kevin May43a799c2019-02-08 16:31:42 +000061
62private:
63 // No copying allowed until it is wanted and properly implemented
Derek Lamberti0028d1b2019-02-20 13:57:42 +000064 Deserializer(const Deserializer&) = delete;
65 Deserializer& operator=(const Deserializer&) = delete;
Kevin May43a799c2019-02-08 16:31:42 +000066
67 /// Create the network from an already loaded flatbuffers graph
Derek Lamberti8ddae332019-02-21 16:29:43 +000068 armnn::INetworkPtr CreateNetworkFromGraph(GraphPtr graph);
Kevin May43a799c2019-02-08 16:31:42 +000069
70 // signature for the parser functions
Derek Lamberti8ddae332019-02-21 16:29:43 +000071 using LayerParsingFunction = void(Deserializer::*)(GraphPtr graph, unsigned int layerIndex);
Kevin May43a799c2019-02-08 16:31:42 +000072
Derek Lamberti8ddae332019-02-21 16:29:43 +000073 void ParseUnsupportedLayer(GraphPtr graph, unsigned int layerIndex);
74 void ParseActivation(GraphPtr graph, unsigned int layerIndex);
75 void ParseAdd(GraphPtr graph, unsigned int layerIndex);
Nattapat Chaimanowong6b4ed982019-02-26 17:24:13 +000076 void ParseBatchToSpaceNd(GraphPtr graph, unsigned int layerIndex);
ruoyan018e7fa232019-02-28 15:09:07 +000077 void ParseBatchNormalization(GraphPtr graph, unsigned int layerIndex);
Conor Kennedy76277882019-02-26 08:29:54 +000078 void ParseConstant(GraphPtr graph, unsigned int layerIndex);
Derek Lamberti8ddae332019-02-21 16:29:43 +000079 void ParseConvolution2d(GraphPtr graph, unsigned int layerIndex);
80 void ParseDepthwiseConvolution2d(GraphPtr graph, unsigned int layerIndex);
Éanna Ó Catháin58885892019-02-27 16:16:39 +000081 void ParseDivision(GraphPtr graph, unsigned int layerIndex);
Nattapat Chaimanowong235cea52019-02-28 16:27:30 +000082 void ParseEqual(GraphPtr graph, unsigned int layerIndex);
Finn Williamsdd2ba7e2019-03-01 11:51:52 +000083 void ParseFloor(GraphPtr graph, unsigned int layerIndex);
Derek Lamberti8ddae332019-02-21 16:29:43 +000084 void ParseFullyConnected(GraphPtr graph, unsigned int layerIndex);
Conor Kennedy79ffdf52019-03-01 14:24:54 +000085 void ParseGreater(GraphPtr graph, unsigned int layerIndex);
Aron Virginas-Tar0fe32452019-02-28 13:12:47 +000086 void ParseMinimum(GraphPtr graph, unsigned int layerIndex);
Aron Virginas-Tar377351e2019-02-27 14:42:31 +000087 void ParseMaximum(GraphPtr graph, unsigned int layerIndex);
Derek Lamberti8ddae332019-02-21 16:29:43 +000088 void ParseMultiplication(GraphPtr graph, unsigned int layerIndex);
Nina Drozd57728782019-02-27 10:53:27 +000089 void ParseNormalization(GraphPtr graph, unsigned int layerIndex);
Nattapat Chaimanowongebb0f9c2019-03-01 12:14:06 +000090 void ParsePad(GraphPtr graph, unsigned int layerIndex);
Derek Lamberti8ddae332019-02-21 16:29:43 +000091 void ParsePermute(GraphPtr graph, unsigned int layerIndex);
92 void ParsePooling2d(GraphPtr graph, unsigned int layerIndex);
93 void ParseReshape(GraphPtr graph, unsigned int layerIndex);
Nattapat Chaimanowong6522cdc2019-03-01 16:14:13 +000094 void ParseResizeBilinear(GraphPtr graph, unsigned int layerIndex);
Sadik Armagan8b42a382019-03-01 14:24:49 +000095 void ParseRsqrt(GraphPtr graph, unsigned int layerIndex);
Derek Lamberti8ddae332019-02-21 16:29:43 +000096 void ParseSoftmax(GraphPtr graph, unsigned int layerIndex);
Nattapat Chaimanowong45286992019-02-26 15:53:02 +000097 void ParseSpaceToBatchNd(GraphPtr graph, unsigned int layerIndex);
Conor Kennedyda1f9752019-03-01 14:37:12 +000098 void ParseSubtraction(GraphPtr graph, unsigned int layerIndex);
Kevin May43a799c2019-02-08 16:31:42 +000099
100 void RegisterOutputSlotOfConnection(uint32_t connectionIndex, armnn::IOutputSlot* slot);
101 void RegisterInputSlotOfConnection(uint32_t connectionIndex, armnn::IInputSlot* slot);
Derek Lamberti8ddae332019-02-21 16:29:43 +0000102 void RegisterInputSlots(GraphPtr graph, uint32_t layerIndex,
Kevin May43a799c2019-02-08 16:31:42 +0000103 armnn::IConnectableLayer* layer);
Derek Lamberti8ddae332019-02-21 16:29:43 +0000104 void RegisterOutputSlots(GraphPtr graph, uint32_t layerIndex,
Kevin May43a799c2019-02-08 16:31:42 +0000105 armnn::IConnectableLayer* layer);
106 void ResetParser();
107
Derek Lamberti8ddae332019-02-21 16:29:43 +0000108 void SetupInputLayers(GraphPtr graphPtr);
109 void SetupOutputLayers(GraphPtr graphPtr);
Kevin May43a799c2019-02-08 16:31:42 +0000110
111 /// The network we're building. Gets cleared after it is passed to the user
112 armnn::INetworkPtr m_Network;
Kevin May43a799c2019-02-08 16:31:42 +0000113 std::vector<LayerParsingFunction> m_ParserFunctions;
114
Derek Lamberti8ddae332019-02-21 16:29:43 +0000115 using NameToBindingInfo = std::pair<std::string, BindingPointInfo >;
116 std::vector<NameToBindingInfo> m_InputBindings;
117 std::vector<NameToBindingInfo> m_OutputBindings;
118
Kevin May43a799c2019-02-08 16:31:42 +0000119 /// A mapping of an output slot to each of the input slots it should be connected to
120 /// The outputSlot is from the layer that creates this tensor as one of its outputs
121 /// The inputSlots are from the layers that use this tensor as one of their inputs
122 struct Slots
123 {
124 armnn::IOutputSlot* outputSlot;
125 std::vector<armnn::IInputSlot*> inputSlots;
126
127 Slots() : outputSlot(nullptr) { }
128 };
129 typedef std::vector<Slots> Connection;
130 std::vector<Connection> m_GraphConnections;
131};
132
Derek Lamberti0028d1b2019-02-20 13:57:42 +0000133} //namespace armnnDeserializer