blob: cb49ffdfb465629e8eef75a7ef50c982d0a2b47f [file] [log] [blame]
Giorgio Arenaa66eaa22017-12-21 19:50:06 +00001/*
2 * Copyright (c) 2017-2018 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 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#include "arm_compute/graph.h"
Giorgio Arenaa66eaa22017-12-21 19:50:06 +000025#include "support/ToolchainSupport.h"
26#include "utils/GraphUtils.h"
27#include "utils/Utils.h"
28
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010029#include <cstdlib>
30
31using namespace arm_compute::utils;
32using namespace arm_compute::graph::frontend;
Giorgio Arenaa66eaa22017-12-21 19:50:06 +000033using namespace arm_compute::graph_utils;
34
35/** Example demonstrating how to implement QASYMM8 MobileNet's network using the Compute Library's graph API
36 *
37 * @param[in] argc Number of arguments
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +000038 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL, 2 = OpenCL with Tuner), [optional] Path to the weights folder, [optional] npy_input, [optional] labels )
Giorgio Arenaa66eaa22017-12-21 19:50:06 +000039 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010040class GraphMobileNetQASYMM8Example : public Example
Giorgio Arenaa66eaa22017-12-21 19:50:06 +000041{
42public:
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010043 //FIXME: Missing quantization info to the tensor descriptor (Giorgio is working on it)
44#if 0
Giorgio Arenaa66eaa22017-12-21 19:50:06 +000045 void do_setup(int argc, char **argv) override
46 {
47 std::string data_path; /* Path to the trainable data */
48 std::string input; /* Image data */
49 std::string label; /* Label data */
50
51 // Quantization info taken from the AndroidNN QASYMM8 MobileNet example
52 const QuantizationInfo in_quant_info = QuantizationInfo(0.0078125f, 128);
53 const QuantizationInfo mid_quant_info = QuantizationInfo(0.0784313753247f, 128);
54
55 const std::vector<QuantizationInfo> conv_weights_quant_info =
56 {
57 QuantizationInfo(0.031778190285f, 156), // conv0
58 QuantizationInfo(0.00604454148561f, 66) // conv14
59 };
60
61 const std::vector<QuantizationInfo> depth_weights_quant_info =
62 {
63 QuantizationInfo(0.254282623529f, 129), // dwsc1
64 QuantizationInfo(0.12828284502f, 172), // dwsc2
65 QuantizationInfo(0.265911251307f, 83), // dwsc3
66 QuantizationInfo(0.0985597148538f, 30), // dwsc4
67 QuantizationInfo(0.0631204470992f, 54), // dwsc5
68 QuantizationInfo(0.0137207424268f, 141), // dwsc6
69 QuantizationInfo(0.0817828401923f, 125), // dwsc7
70 QuantizationInfo(0.0393880493939f, 164), // dwsc8
71 QuantizationInfo(0.211694166064f, 129), // dwsc9
72 QuantizationInfo(0.158015936613f, 103), // dwsc10
73 QuantizationInfo(0.0182712618262f, 137), // dwsc11
74 QuantizationInfo(0.0127998134121f, 134), // dwsc12
75 QuantizationInfo(0.299285322428f, 161) // dwsc13
76 };
77
78 const std::vector<QuantizationInfo> point_weights_quant_info =
79 {
80 QuantizationInfo(0.0425766184926f, 129), // dwsc1
81 QuantizationInfo(0.0250773020089f, 94), // dwsc2
82 QuantizationInfo(0.015851572156f, 93), // dwsc3
83 QuantizationInfo(0.0167811904103f, 98), // dwsc4
84 QuantizationInfo(0.00951790809631f, 135), // dwsc5
85 QuantizationInfo(0.00999817531556f, 128), // dwsc6
86 QuantizationInfo(0.00590536883101f, 126), // dwsc7
87 QuantizationInfo(0.00576109671965f, 133), // dwsc8
88 QuantizationInfo(0.00830461271107f, 142), // dwsc9
89 QuantizationInfo(0.0152327232063f, 72), // dwsc10
90 QuantizationInfo(0.00741417845711f, 125), // dwsc11
91 QuantizationInfo(0.0135628981516f, 142), // dwsc12
92 QuantizationInfo(0.0338749065995f, 140) // dwsc13
93 };
94
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +000095 // Set target. 0 (NEON), 1 (OpenCL), 2 (OpenCL with Tuner). By default it is NEON
96 const int int_target_hint = argc > 1 ? std::strtol(argv[1], nullptr, 10) : 0;
97 TargetHint target_hint = set_target_hint(int_target_hint);
98
Giorgio Arenaa66eaa22017-12-21 19:50:06 +000099 // Parse arguments
100 if(argc < 2)
101 {
102 // Print help
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +0000103 std::cout << "Usage: " << argv[0] << " [target] [path_to_data] [npy_input] [labels]\n\n";
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000104 std::cout << "No data folder provided: using random values\n\n";
105 }
106 else if(argc == 2)
107 {
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +0000108 std::cout << "Usage: " << argv[0] << " " << argv[1] << " [path_to_data] [npy_input] [labels]\n\n";
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000109 std::cout << "No input provided: using random values\n\n";
110 }
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +0000111 else if(argc == 4)
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000112 {
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +0000113 data_path = argv[2];
114 input = argv[3];
115 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " [labels]\n\n";
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000116 std::cout << "No text file with labels provided: skipping output accessor\n\n";
117 }
118 else
119 {
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +0000120 data_path = argv[2];
121 input = argv[3];
122 label = argv[4];
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000123 }
124
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +0000125 graph << target_hint
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000126 << arm_compute::graph::Tensor(TensorInfo(TensorShape(224U, 224U, 3U, 1U), 1, DataType::QASYMM8, in_quant_info),
127 get_weights_accessor(data_path, "/cnn_data/mobilenet_qasymm8_model/" + input))
128 << ConvolutionLayer(
129 3U, 3U, 32U,
130 get_weights_accessor(data_path, "/cnn_data/mobilenet_qasymm8_model/Conv2d_0_weights.npy"),
131 get_weights_accessor(data_path, "/cnn_data/mobilenet_qasymm8_model/Conv2d_0_bias.npy"),
132 PadStrideInfo(2U, 2U, 0U, 1U, 0U, 1U, DimensionRoundingType::FLOOR),
133 1, WeightsInfo(),
134 conv_weights_quant_info.at(0),
135 mid_quant_info)
136 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 6.f))
137 << get_dwsc_node(data_path, "Conv2d_1", 64U, PadStrideInfo(1U, 1U, 1U, 1U), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(0), point_weights_quant_info.at(0))
138 << get_dwsc_node(data_path, "Conv2d_2", 128U, PadStrideInfo(2U, 2U, 0U, 1U, 0U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(1),
139 point_weights_quant_info.at(1))
140 << get_dwsc_node(data_path, "Conv2d_3", 128U, PadStrideInfo(1U, 1U, 1U, 1U, 1U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(2),
141 point_weights_quant_info.at(2))
142 << get_dwsc_node(data_path, "Conv2d_4", 256U, PadStrideInfo(2U, 2U, 0U, 1U, 0U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(3),
143 point_weights_quant_info.at(3))
144 << get_dwsc_node(data_path, "Conv2d_5", 256U, PadStrideInfo(1U, 1U, 1U, 1U, 1U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(4),
145 point_weights_quant_info.at(4))
146 << get_dwsc_node(data_path, "Conv2d_6", 512U, PadStrideInfo(2U, 2U, 0U, 1U, 0U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(5),
147 point_weights_quant_info.at(5))
148 << get_dwsc_node(data_path, "Conv2d_7", 512U, PadStrideInfo(1U, 1U, 1U, 1U, 1U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(6),
149 point_weights_quant_info.at(6))
150 << get_dwsc_node(data_path, "Conv2d_8", 512U, PadStrideInfo(1U, 1U, 1U, 1U, 1U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(7),
151 point_weights_quant_info.at(7))
152 << get_dwsc_node(data_path, "Conv2d_9", 512U, PadStrideInfo(1U, 1U, 1U, 1U, 1U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(8),
153 point_weights_quant_info.at(8))
154 << get_dwsc_node(data_path, "Conv2d_10", 512U, PadStrideInfo(1U, 1U, 1U, 1U, 1U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(9),
155 point_weights_quant_info.at(9))
156 << get_dwsc_node(data_path, "Conv2d_11", 512U, PadStrideInfo(1U, 1U, 1U, 1U, 1U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(10),
157 point_weights_quant_info.at(10))
158 << get_dwsc_node(data_path, "Conv2d_12", 1024U, PadStrideInfo(2U, 2U, 0U, 1U, 0U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(11),
159 point_weights_quant_info.at(11))
160 << get_dwsc_node(data_path, "Conv2d_13", 1024U, PadStrideInfo(1U, 1U, 1U, 1U, 1U, 1U, DimensionRoundingType::FLOOR), PadStrideInfo(1U, 1U, 0U, 0U), depth_weights_quant_info.at(12),
161 point_weights_quant_info.at(12))
162 << PoolingLayer(PoolingLayerInfo(PoolingType::AVG))
163 << ConvolutionLayer(
164 1U, 1U, 1001U,
165 get_weights_accessor(data_path, "/cnn_data/mobilenet_qasymm8_model/Logits_Conv2d_1c_1x1_weights.npy"),
166 get_weights_accessor(data_path, "/cnn_data/mobilenet_qasymm8_model/Logits_Conv2d_1c_1x1_bias.npy"),
167 PadStrideInfo(1U, 1U, 0U, 0U), 1, WeightsInfo(), conv_weights_quant_info.at(1))
168 << ReshapeLayer(TensorShape(1001U))
169 << SoftmaxLayer()
170 << arm_compute::graph::Tensor(get_output_accessor(label, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000171
172 // In order to enable the OpenCL tuner, graph_init() has to be called only when all nodes have been instantiated
173 graph.graph_init(int_target_hint == 2);
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000174 }
175 void do_run() override
176 {
177 // Run graph
178 graph.run();
179 }
180
181private:
182 Graph graph{};
183
184 /** This function produces a depthwise separable convolution node (i.e. depthwise + pointwise layers) with ReLU6 activation after each layer.
185 *
186 * @param[in] data_path Path to trainable data folder
187 * @param[in] param_path Prefix of specific set of weights/biases data
188 * @param[in] conv_filt Filters depths for pointwise convolution
189 * @param[in] dwc_pad_stride_info PadStrideInfo for depthwise convolution
190 * @param[in] conv_pad_stride_info PadStrideInfo for pointwise convolution
191 * @param[in] depth_weights_quant_info QuantizationInfo for depthwise convolution's weights
192 * @param[in] point_weights_quant_info QuantizationInfo for pointwise convolution's weights
193 *
194 * @return The complete dwsc node
195 */
196 BranchLayer get_dwsc_node(const std::string &data_path, std::string &&param_path,
197 const unsigned int conv_filt,
198 PadStrideInfo dwc_pad_stride_info, PadStrideInfo conv_pad_stride_info,
199 QuantizationInfo depth_weights_quant_info, QuantizationInfo point_weights_quant_info)
200 {
201 std::string total_path = "/cnn_data/mobilenet_qasymm8_model/" + param_path + "_";
202 SubGraph sg;
203
204 sg << DepthwiseConvolutionLayer(
205 3U, 3U,
206 get_weights_accessor(data_path, total_path + "depthwise_weights.npy"),
207 get_weights_accessor(data_path, total_path + "depthwise_bias.npy"),
208 dwc_pad_stride_info,
209 true,
210 depth_weights_quant_info)
211 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 6.f))
212 << ConvolutionLayer(
213 1U, 1U, conv_filt,
214 get_weights_accessor(data_path, total_path + "pointwise_weights.npy"),
215 get_weights_accessor(data_path, total_path + "pointwise_bias.npy"),
216 conv_pad_stride_info,
217 1, WeightsInfo(),
218 point_weights_quant_info)
219 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 6.f));
220
221 return BranchLayer(std::move(sg));
222 }
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100223#endif /* if 0 */
224 Stream graph { 0, "MobileNetV1_QASYMM8" };
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000225};
226/** Main program for MobileNetQASYMM8
227 *
228 * @param[in] argc Number of arguments
229 * @param[in] argv Arguments ( [optional] Path to the weights folder, [optional] npy_input, [optional] labels )
230 */
231int main(int argc, char **argv)
232{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100233 return arm_compute::utils::run_example<GraphMobileNetQASYMM8Example>(argc, argv);
Giorgio Arenaa66eaa22017-12-21 19:50:06 +0000234}