blob: b15c3f2defdf6bcc676dec221b9a1218f76aa206 [file] [log] [blame]
Isabella Gottardi9f20bda2017-11-03 17:16:20 +00001/*
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +00002 * Copyright (c) 2017-2018 ARM Limited.
Isabella Gottardi9f20bda2017-11-03 17:16:20 +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"
Isabella Gottardi9f20bda2017-11-03 17:16:20 +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;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000033using namespace arm_compute::graph_utils;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000034
35/** Example demonstrating how to implement VGG19's network using the Compute Library's graph API
36 *
37 * @param[in] argc Number of arguments
Isabella Gottardi88d5b222018-04-06 12:24:55 +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] Fast math for convolution layer (0 = DISABLED, 1 = ENABLED) )
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000039 */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000040class GraphVGG19Example : public Example
Isabella Gottardi9f20bda2017-11-03 17:16:20 +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 */
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000048
Georgios Pinitas140fdc72018-02-16 11:42:38 +000049 // Create a preprocessor object
50 const std::array<float, 3> mean_rgb{ { 123.68f, 116.779f, 103.939f } };
51 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<CaffePreproccessor>(mean_rgb);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000052
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +000053 // Set target. 0 (NEON), 1 (OpenCL), 2 (OpenCL with Tuner). By default it is NEON
Giorgio Arena59631a12018-05-02 13:59:04 +010054 const int target = argc > 1 ? std::strtol(argv[1], nullptr, 10) : 0;
55 Target target_hint = set_target_hint(target);
56 FastMathHint fast_math_hint = FastMathHint::DISABLED;
57 const bool is_opencl = target_hint == Target::CL;
Gian Marco Iodice1ed442a2018-04-11 10:58:31 +010058
59 ConvolutionMethod first_convolution3x3_hint = is_opencl ? ConvolutionMethod::DIRECT : ConvolutionMethod::GEMM;
60 ConvolutionMethod convolution3x3_hint = ConvolutionMethod::DEFAULT;
Gian Marcobfa3b522017-12-12 10:08:38 +000061
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000062 // Parse arguments
63 if(argc < 2)
64 {
65 // Print help
Giorgio Arena59631a12018-05-02 13:59:04 +010066 std::cout << "Usage: " << argv[0] << " [target] [path_to_data] [image] [labels] [fast_math_hint]\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000067 std::cout << "No data folder provided: using random values\n\n";
68 }
69 else if(argc == 2)
70 {
Giorgio Arena59631a12018-05-02 13:59:04 +010071 std::cout << "Usage: " << argv[0] << " " << argv[1] << " [path_to_data] [image] [labels] [fast_math_hint]\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000072 std::cout << "No data folder provided: using random values\n\n";
73 }
74 else if(argc == 3)
75 {
76 data_path = argv[2];
Giorgio Arena59631a12018-05-02 13:59:04 +010077 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " [image] [labels] [fast_math_hint]\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000078 std::cout << "No image provided: using random values\n\n";
79 }
80 else if(argc == 4)
81 {
82 data_path = argv[2];
83 image = argv[3];
Giorgio Arena59631a12018-05-02 13:59:04 +010084 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " [labels] [fast_math_hint]\n\n";
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000085 std::cout << "No text file with labels provided: skipping output accessor\n\n";
86 }
Giorgio Arena59631a12018-05-02 13:59:04 +010087 else if(argc == 5)
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000088 {
89 data_path = argv[2];
90 image = argv[3];
91 label = argv[4];
Giorgio Arena59631a12018-05-02 13:59:04 +010092 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " " << argv[4] << " [fast_math_hint]\n\n";
93 std::cout << "No fast math info provided: disabling fast math\n\n";
94 }
95 else
96 {
97 data_path = argv[2];
98 image = argv[3];
99 label = argv[4];
100 fast_math_hint = (std::strtol(argv[5], nullptr, 1) == 0) ? FastMathHint::DISABLED : FastMathHint::ENABLED;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000101 }
102
103 graph << target_hint
Gian Marco Iodice1ed442a2018-04-11 10:58:31 +0100104 << first_convolution3x3_hint
Giorgio Arena59631a12018-05-02 13:59:04 +0100105 << fast_math_hint
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000106 << InputLayer(TensorDescriptor(TensorShape(224U, 224U, 3U, 1U), DataType::F32),
107 get_input_accessor(image, std::move(preprocessor)))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000108 // Layer 1
109 << ConvolutionLayer(
110 3U, 3U, 64U,
111 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_1_w.npy"),
112 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_1_b.npy"),
113 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100114 .set_name("conv1_1")
115 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv1_1/Relu")
Gian Marco Iodice1ed442a2018-04-11 10:58:31 +0100116 << convolution3x3_hint
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000117 << ConvolutionLayer(
118 3U, 3U, 64U,
119 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_2_w.npy"),
120 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_2_b.npy"),
121 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100122 .set_name("conv1_2")
123 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv1_2/Relu")
124 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000125 // Layer 2
126 << ConvolutionLayer(
127 3U, 3U, 128U,
128 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_1_w.npy"),
129 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_1_b.npy"),
130 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100131 .set_name("conv2_1")
132 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv2_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000133 << ConvolutionLayer(
134 3U, 3U, 128U,
135 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_2_w.npy"),
136 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_2_b.npy"),
137 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100138 .set_name("conv2_2")
139 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv2_2/Relu")
140 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool2")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000141 // Layer 3
142 << ConvolutionLayer(
143 3U, 3U, 256U,
144 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_1_w.npy"),
145 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_1_b.npy"),
146 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100147 .set_name("conv3_1")
148 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000149 << ConvolutionLayer(
150 3U, 3U, 256U,
151 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_2_w.npy"),
152 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_2_b.npy"),
153 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100154 .set_name("conv3_2")
155 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000156 << ConvolutionLayer(
157 3U, 3U, 256U,
158 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_3_w.npy"),
159 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_3_b.npy"),
160 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100161 .set_name("conv3_3")
162 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000163 << ConvolutionLayer(
164 3U, 3U, 256U,
165 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_4_w.npy"),
166 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_4_b.npy"),
167 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100168 .set_name("conv3_4")
169 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_4/Relu")
170 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool3")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000171 // Layer 4
172 << ConvolutionLayer(
173 3U, 3U, 512U,
174 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_1_w.npy"),
175 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_1_b.npy"),
176 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100177 .set_name("conv4_1")
178 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000179 << ConvolutionLayer(
180 3U, 3U, 512U,
181 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_2_w.npy"),
182 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_2_b.npy"),
183 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100184 .set_name("conv4_2")
185 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000186 << ConvolutionLayer(
187 3U, 3U, 512U,
188 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_3_w.npy"),
189 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_3_b.npy"),
190 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100191 .set_name("conv4_3")
192 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000193 << ConvolutionLayer(
194 3U, 3U, 512U,
195 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_4_w.npy"),
196 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_4_b.npy"),
197 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100198 .set_name("conv4_4")
199 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_4/Relu")
200 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool4")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000201 // Layer 5
202 << ConvolutionLayer(
203 3U, 3U, 512U,
204 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_1_w.npy"),
205 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_1_b.npy"),
206 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100207 .set_name("conv5_1")
208 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000209 << ConvolutionLayer(
210 3U, 3U, 512U,
211 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_2_w.npy"),
212 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_2_b.npy"),
213 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100214 .set_name("conv5_2")
215 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000216 << ConvolutionLayer(
217 3U, 3U, 512U,
218 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_3_w.npy"),
219 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_3_b.npy"),
220 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100221 .set_name("conv5_3")
222 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000223 << ConvolutionLayer(
224 3U, 3U, 512U,
225 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_4_w.npy"),
226 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_4_b.npy"),
227 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100228 .set_name("conv5_4")
229 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_4/Relu")
230 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool5")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000231 // Layer 6
232 << FullyConnectedLayer(
233 4096U,
234 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc6_w.npy"),
235 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc6_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100236 .set_name("fc6")
237 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000238 // Layer 7
239 << FullyConnectedLayer(
240 4096U,
241 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc7_w.npy"),
242 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc7_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100243 .set_name("fc7")
244 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("Relu_1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000245 // Layer 8
246 << FullyConnectedLayer(
247 1000U,
248 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc8_w.npy"),
249 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc8_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100250 .set_name("fc8")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000251 // Softmax
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100252 << SoftmaxLayer().set_name("prob")
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000253 << OutputLayer(get_output_accessor(label, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000254
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000255 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000256 GraphConfig config;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +0100257 config.use_tuner = (target == 2);
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000258 graph.finalize(target_hint, config);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000259 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000260 void do_run() override
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000261 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000262 // Run graph
263 graph.run();
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000264 }
265
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000266private:
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000267 Stream graph{ 0, "VGG19" };
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000268};
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000269
270/** Main program for VGG19
271 *
272 * @param[in] argc Number of arguments
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100273 * @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] Fast math for convolution layer (0 = DISABLED, 1 = ENABLED) )
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000274 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000275int main(int argc, char **argv)
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000276{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000277 return arm_compute::utils::run_example<GraphVGG19Example>(argc, argv);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000278}