blob: 7bfc6808fa078b39c7c2f9f20f93510e263faaf3 [file] [log] [blame]
Georgios Pinitas236bfe72017-11-23 15:59:55 +00001/*
Georgios Pinitas7f530b32018-01-22 11:20:44 +00002 * Copyright (c) 2017-2018 ARM Limited.
Georgios Pinitas236bfe72017-11-23 15:59:55 +00003 *
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"
Georgios Pinitas236bfe72017-11-23 15:59:55 +000025#include "support/ToolchainSupport.h"
26#include "utils/GraphUtils.h"
27#include "utils/Utils.h"
28
29#include <cstdlib>
30
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000031using namespace arm_compute::utils;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010032using namespace arm_compute::graph::frontend;
Georgios Pinitas236bfe72017-11-23 15:59:55 +000033using namespace arm_compute::graph_utils;
34
Georgios Pinitas236bfe72017-11-23 15:59:55 +000035/** Example demonstrating how to implement MobileNet's network using the Compute Library's graph API
36 *
37 * @param[in] argc Number of arguments
Giorgio Arena59631a12018-05-02 13:59:04 +010038 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL, 2 = OpenCL with Tuner), [optional] Path to the weights folder, [optional] image, [optional] labels, [optional] data layout, [optional] Fast math for convolution layer (0 = DISABLED, 1 = ENABLED) )
Georgios Pinitas236bfe72017-11-23 15:59:55 +000039 */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000040class GraphMobilenetExample : public Example
Georgios Pinitas236bfe72017-11-23 15:59:55 +000041{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000042public:
43 void do_setup(int argc, char **argv) override
44 {
45 std::string data_path; /* Path to the trainable data */
46 std::string image; /* Image data */
47 std::string label; /* Label data */
Georgios Pinitas236bfe72017-11-23 15:59:55 +000048
Georgios Pinitas140fdc72018-02-16 11:42:38 +000049 // Create a preprocessor object
50 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<TFPreproccessor>();
Georgios Pinitas236bfe72017-11-23 15:59:55 +000051
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +000052 // Set target. 0 (NEON), 1 (OpenCL), 2 (OpenCL with Tuner). By default it is NEON
Georgios Pinitasd8734b52017-12-22 15:27:52 +000053 const int target = argc > 1 ? std::strtol(argv[1], nullptr, 10) : 0;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010054 Target target_hint = set_target_hint(target);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000055 ConvolutionMethod convolution_hint = ConvolutionMethod::GEMM;
56 DepthwiseConvolutionMethod depthwise_convolution_hint = DepthwiseConvolutionMethod::OPTIMIZED_3x3;
Giorgio Arena59631a12018-05-02 13:59:04 +010057 FastMathHint fast_math_hint = FastMathHint::DISABLED;
Gian Marcobfa3b522017-12-12 10:08:38 +000058
Georgios Pinitas7f530b32018-01-22 11:20:44 +000059 // Set model to execute. 0 (MobileNetV1_1.0_224), 1 (MobileNetV1_0.75_160)
60 int model_id = (argc > 2) ? std::strtol(argv[2], nullptr, 10) : 0;
61 ARM_COMPUTE_ERROR_ON_MSG(model_id > 1, "Invalid model ID. Model must be 0 (MobileNetV1_1.0_224) or 1 (MobileNetV1_0.75_160)");
Georgios Pinitascac13b12018-04-27 19:07:19 +010062 int layout_id = (argc > 3) ? std::strtol(argv[3], nullptr, 10) : 0;
63 ARM_COMPUTE_ERROR_ON_MSG(layout_id > 1, "Invalid layout ID. Layout must be 0 (NCHW) or 1 (NHWC)");
64
65 float depth_scale = (model_id == 0) ? 1.f : 0.75;
66 unsigned int spatial_size = (model_id == 0) ? 224 : 160;
67 std::string model_path = (model_id == 0) ? "/cnn_data/mobilenet_v1_1_224_model/" : "/cnn_data/mobilenet_v1_075_160_model/";
68 TensorDescriptor input_descriptor_nchw = TensorDescriptor(TensorShape(spatial_size, spatial_size, 3U, 1U), DataType::F32);
69 TensorDescriptor input_descriptor_nhwc = TensorDescriptor(TensorShape(3U, spatial_size, spatial_size, 1U), DataType::F32).set_layout(DataLayout::NHWC);
70 TensorDescriptor input_descriptor = (layout_id == 0) ? input_descriptor_nchw : input_descriptor_nhwc;
Georgios Pinitas7f530b32018-01-22 11:20:44 +000071
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000072 // Parse arguments
73 if(argc < 2)
74 {
75 // Print help
Giorgio Arena59631a12018-05-02 13:59:04 +010076 std::cout << "Usage: " << argv[0] << " [target] [model] [layout] [path_to_data] [image] [labels] [fast_math_hint]\n\n";
Georgios Pinitas7f530b32018-01-22 11:20:44 +000077 std::cout << "No model ID provided: using MobileNetV1_1.0_224\n\n";
Georgios Pinitascac13b12018-04-27 19:07:19 +010078 std::cout << "No data layout provided: using NCHW\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000079 std::cout << "No data folder provided: using random values\n\n";
80 }
81 else if(argc == 2)
82 {
Giorgio Arena59631a12018-05-02 13:59:04 +010083 std::cout << "Usage: " << argv[0] << " " << argv[1] << " [model] [layout] [path_to_data] [image] [labels] [fast_math_hint]\n\n";
Georgios Pinitas7f530b32018-01-22 11:20:44 +000084 std::cout << "No model ID provided: using MobileNetV1_1.0_224\n\n";
Georgios Pinitascac13b12018-04-27 19:07:19 +010085 std::cout << "No data layout provided: using NCHW\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000086 std::cout << "No data folder provided: using random values\n\n";
87 }
88 else if(argc == 3)
89 {
Giorgio Arena59631a12018-05-02 13:59:04 +010090 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " [layout] [path_to_data] [image] [labels] [fast_math_hint]\n\n";
Georgios Pinitascac13b12018-04-27 19:07:19 +010091 std::cout << "No data layout provided: using NCHW\n\n";
Georgios Pinitas7f530b32018-01-22 11:20:44 +000092 std::cout << "No data folder provided: using random values\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000093 }
94 else if(argc == 4)
95 {
Giorgio Arena59631a12018-05-02 13:59:04 +010096 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " [path_to_data] [image] [labels] [fast_math_hint]\n\n";
Georgios Pinitascac13b12018-04-27 19:07:19 +010097 std::cout << "No data folder provided: using random values\n\n";
Georgios Pinitas7f530b32018-01-22 11:20:44 +000098 }
99 else if(argc == 5)
100 {
Georgios Pinitascac13b12018-04-27 19:07:19 +0100101 data_path = argv[4];
Giorgio Arena59631a12018-05-02 13:59:04 +0100102 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " " << argv[4] << " [image] [labels] [fast_math_hint]\n\n";
Georgios Pinitascac13b12018-04-27 19:07:19 +0100103 std::cout << "No image provided: using random values\n\n";
104 std::cout << "No text file with labels provided: skipping output accessor\n\n";
105 }
106 else if(argc == 6)
107 {
108 data_path = argv[4];
109 image = argv[5];
Giorgio Arena59631a12018-05-02 13:59:04 +0100110 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " [labels] [fast_math_hint]\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000111 std::cout << "No text file with labels provided: skipping output accessor\n\n";
112 }
Giorgio Arena59631a12018-05-02 13:59:04 +0100113 else if(argc == 7)
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000114 {
Georgios Pinitascac13b12018-04-27 19:07:19 +0100115 data_path = argv[4];
116 image = argv[5];
117 label = argv[6];
Giorgio Arena59631a12018-05-02 13:59:04 +0100118 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " " << argv[4] << " [fast_math_hint]\n\n";
119 std::cout << "No fast math info provided: disabling fast math\n\n";
120 }
121 else
122 {
123 data_path = argv[4];
124 image = argv[5];
125 label = argv[6];
126 fast_math_hint = (std::strtol(argv[7], nullptr, 1) == 0) ? FastMathHint::DISABLED : FastMathHint::ENABLED;
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000127 }
128
129 // Add model path to data path
130 if(!data_path.empty())
131 {
132 data_path += model_path;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000133 }
134
135 graph << target_hint
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000136 << convolution_hint
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000137 << depthwise_convolution_hint
Giorgio Arena59631a12018-05-02 13:59:04 +0100138 << fast_math_hint
Georgios Pinitascac13b12018-04-27 19:07:19 +0100139 << InputLayer(input_descriptor,
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000140 get_input_accessor(image, std::move(preprocessor), false))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000141 << ConvolutionLayer(
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000142 3U, 3U, 32U * depth_scale,
Georgios Pinitascac13b12018-04-27 19:07:19 +0100143 get_weights_accessor(data_path, "Conv2d_0_weights.npy", DataLayout::NCHW),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000144 std::unique_ptr<arm_compute::graph::ITensorAccessor>(nullptr),
145 PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::FLOOR))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100146 .set_name("Conv2d_0")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000147 << BatchNormalizationLayer(
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000148 get_weights_accessor(data_path, "Conv2d_0_BatchNorm_moving_mean.npy"),
149 get_weights_accessor(data_path, "Conv2d_0_BatchNorm_moving_variance.npy"),
150 get_weights_accessor(data_path, "Conv2d_0_BatchNorm_gamma.npy"),
151 get_weights_accessor(data_path, "Conv2d_0_BatchNorm_beta.npy"),
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000152 0.001f)
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100153 .set_name("Conv2d_0/BatchNorm")
154 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f)).set_name("Conv2d_0/Relu6");
Georgios Pinitas41c482d2018-04-17 13:23:26 +0100155 graph << get_dwsc_node(data_path, "Conv2d_1", 64 * depth_scale, PadStrideInfo(1, 1, 1, 1), PadStrideInfo(1, 1, 0, 0));
156 graph << get_dwsc_node(data_path, "Conv2d_2", 128 * depth_scale, PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
157 graph << get_dwsc_node(data_path, "Conv2d_3", 128 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
158 graph << get_dwsc_node(data_path, "Conv2d_4", 256 * depth_scale, PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
159 graph << get_dwsc_node(data_path, "Conv2d_5", 256 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
160 graph << get_dwsc_node(data_path, "Conv2d_6", 512 * depth_scale, PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
161 graph << get_dwsc_node(data_path, "Conv2d_7", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
162 graph << get_dwsc_node(data_path, "Conv2d_8", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
163 graph << get_dwsc_node(data_path, "Conv2d_9", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
164 graph << get_dwsc_node(data_path, "Conv2d_10", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
165 graph << get_dwsc_node(data_path, "Conv2d_11", 512 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
166 graph << get_dwsc_node(data_path, "Conv2d_12", 1024 * depth_scale, PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
167 graph << get_dwsc_node(data_path, "Conv2d_13", 1024 * depth_scale, PadStrideInfo(1, 1, 1, 1, 1, 1, DimensionRoundingType::CEIL), PadStrideInfo(1, 1, 0, 0));
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100168 graph << PoolingLayer(PoolingLayerInfo(PoolingType::AVG)).set_name("Logits/AvgPool_1a")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000169 << ConvolutionLayer(
170 1U, 1U, 1001U,
Georgios Pinitascac13b12018-04-27 19:07:19 +0100171 get_weights_accessor(data_path, "Logits_Conv2d_1c_1x1_weights.npy", DataLayout::NCHW),
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000172 get_weights_accessor(data_path, "Logits_Conv2d_1c_1x1_biases.npy"),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000173 PadStrideInfo(1, 1, 0, 0))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100174 .set_name("Logits/Conv2d_1c_1x1")
175 << ReshapeLayer(TensorShape(1001U)).set_name("Reshape")
176 << SoftmaxLayer().set_name("Softmax")
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000177 << OutputLayer(get_output_accessor(label, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000178
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000179 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000180 GraphConfig config;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100181 config.use_tuner = (target == 2);
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000182 graph.finalize(target_hint, config);
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000183 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000184 void do_run() override
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000185 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000186 // Run graph
187 graph.run();
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000188 }
189
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000190private:
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000191 Stream graph{ 0, "MobileNetV1" };
Gian Marcobfa3b522017-12-12 10:08:38 +0000192
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000193 BranchLayer get_dwsc_node(const std::string &data_path, std::string &&param_path,
194 unsigned int conv_filt,
195 PadStrideInfo dwc_pad_stride_info, PadStrideInfo conv_pad_stride_info)
196 {
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000197 std::string total_path = param_path + "_";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000198 SubStream sg(graph);
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000199 sg << DepthwiseConvolutionLayer(
200 3U, 3U,
Georgios Pinitascac13b12018-04-27 19:07:19 +0100201 get_weights_accessor(data_path, total_path + "depthwise_depthwise_weights.npy", DataLayout::NCHW),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000202 std::unique_ptr<arm_compute::graph::ITensorAccessor>(nullptr),
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000203 dwc_pad_stride_info)
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100204 .set_name(total_path + "depthwise/depthwise")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000205 << BatchNormalizationLayer(
206 get_weights_accessor(data_path, total_path + "depthwise_BatchNorm_moving_mean.npy"),
207 get_weights_accessor(data_path, total_path + "depthwise_BatchNorm_moving_variance.npy"),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000208 get_weights_accessor(data_path, total_path + "depthwise_BatchNorm_gamma.npy"),
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000209 get_weights_accessor(data_path, total_path + "depthwise_BatchNorm_beta.npy"),
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000210 0.001f)
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100211 .set_name(total_path + "depthwise/BatchNorm")
212 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f)).set_name(total_path + "depthwise/Relu6")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000213 << ConvolutionLayer(
214 1U, 1U, conv_filt,
Georgios Pinitascac13b12018-04-27 19:07:19 +0100215 get_weights_accessor(data_path, total_path + "pointwise_weights.npy", DataLayout::NCHW),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000216 std::unique_ptr<arm_compute::graph::ITensorAccessor>(nullptr),
217 conv_pad_stride_info)
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100218 .set_name(total_path + "pointwise/Conv2D")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000219 << BatchNormalizationLayer(
220 get_weights_accessor(data_path, total_path + "pointwise_BatchNorm_moving_mean.npy"),
221 get_weights_accessor(data_path, total_path + "pointwise_BatchNorm_moving_variance.npy"),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000222 get_weights_accessor(data_path, total_path + "pointwise_BatchNorm_gamma.npy"),
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000223 get_weights_accessor(data_path, total_path + "pointwise_BatchNorm_beta.npy"),
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000224 0.001f)
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100225 .set_name(total_path + "pointwise/BatchNorm")
226 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 6.f)).set_name(total_path + "pointwise/Relu6");
Gian Marcobfa3b522017-12-12 10:08:38 +0000227
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000228 return BranchLayer(std::move(sg));
229 }
230};
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000231
232/** Main program for MobileNetV1
233 *
234 * @param[in] argc Number of arguments
Georgios Pinitas7f530b32018-01-22 11:20:44 +0000235 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL),
236 * [optional] Model ID (0 = MobileNetV1_1.0_224, 1 = MobileNetV1_0.75_160),
237 * [optional] Path to the weights folder,
238 * [optional] image,
Giorgio Arena59631a12018-05-02 13:59:04 +0100239 * [optional] labels,
240 * [optional] data layout,
241 * [optional] Fast math for convolution layer (0 = DISABLED, 1 = ENABLED) )
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000242 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000243int main(int argc, char **argv)
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000244{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000245 return arm_compute::utils::run_example<GraphMobilenetExample>(argc, argv);
Georgios Pinitas236bfe72017-11-23 15:59:55 +0000246}