blob: 6cb6b1fae2e9d98df3af9eee618e8e3f024d40e4 [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"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010026#include "utils/CommonGraphOptions.h"
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000027#include "utils/GraphUtils.h"
28#include "utils/Utils.h"
29
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000030using namespace arm_compute::utils;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010031using namespace arm_compute::graph::frontend;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000032using namespace arm_compute::graph_utils;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000033/** Example demonstrating how to implement VGG19's network using the Compute Library's graph API
34 *
35 * @param[in] argc Number of arguments
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010036 * @param[in] argv Arguments
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000037 */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000038class GraphVGG19Example : public Example
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000039{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000040public:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010041 GraphVGG19Example()
42 : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "VGG19")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000043 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010044 }
45 bool do_setup(int argc, char **argv) override
46 {
47 // Parse arguments
48 cmd_parser.parse(argc, argv);
49
50 // Consume common parameters
51 common_params = consume_common_graph_parameters(common_opts);
52
53 // Return when help menu is requested
54 if(common_params.help)
55 {
56 cmd_parser.print_help(argv[0]);
57 return false;
58 }
59
60 // Checks
Georgios Pinitas6ed43b52018-07-12 17:34:22 +010061 ARM_COMPUTE_EXIT_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type), "Unsupported data type!");
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010062 ARM_COMPUTE_EXIT_ON_MSG(common_params.data_layout == DataLayout::NHWC && common_params.target != Target::CL, "Unsupported data layout!");
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010063
64 // Print parameter values
65 std::cout << common_params << std::endl;
66
67 // Get trainable parameters data path
68 std::string data_path = common_params.data_path;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000069
Georgios Pinitas140fdc72018-02-16 11:42:38 +000070 // Create a preprocessor object
71 const std::array<float, 3> mean_rgb{ { 123.68f, 116.779f, 103.939f } };
72 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<CaffePreproccessor>(mean_rgb);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +000073
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010074 // Create input descriptor
75 const TensorShape tensor_shape = permute_shape(TensorShape(224U, 224U, 3U, 1U), DataLayout::NCHW, common_params.data_layout);
76 TensorDescriptor input_descriptor = TensorDescriptor(tensor_shape, common_params.data_type).set_layout(common_params.data_layout);
77
78 // Set weights trained layout
79 const DataLayout weights_layout = DataLayout::NCHW;
80
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010081 graph << common_params.target
82 << common_params.fast_math_hint
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010083 << InputLayer(input_descriptor, get_input_accessor(common_params, std::move(preprocessor)))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000084 // Layer 1
85 << ConvolutionLayer(
86 3U, 3U, 64U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010087 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000088 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_1_b.npy"),
89 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010090 .set_name("conv1_1")
91 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv1_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000092 << ConvolutionLayer(
93 3U, 3U, 64U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010094 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000095 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv1_2_b.npy"),
96 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010097 .set_name("conv1_2")
98 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv1_2/Relu")
99 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000100 // Layer 2
101 << ConvolutionLayer(
102 3U, 3U, 128U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100103 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000104 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_1_b.npy"),
105 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100106 .set_name("conv2_1")
107 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv2_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000108 << ConvolutionLayer(
109 3U, 3U, 128U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100110 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000111 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv2_2_b.npy"),
112 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100113 .set_name("conv2_2")
114 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv2_2/Relu")
115 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool2")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000116 // Layer 3
117 << ConvolutionLayer(
118 3U, 3U, 256U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100119 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000120 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_1_b.npy"),
121 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100122 .set_name("conv3_1")
123 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000124 << ConvolutionLayer(
125 3U, 3U, 256U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100126 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000127 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_2_b.npy"),
128 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100129 .set_name("conv3_2")
130 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000131 << ConvolutionLayer(
132 3U, 3U, 256U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100133 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_3_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000134 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_3_b.npy"),
135 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100136 .set_name("conv3_3")
137 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000138 << ConvolutionLayer(
139 3U, 3U, 256U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100140 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_4_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000141 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv3_4_b.npy"),
142 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100143 .set_name("conv3_4")
144 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3_4/Relu")
145 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool3")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000146 // Layer 4
147 << ConvolutionLayer(
148 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100149 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000150 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_1_b.npy"),
151 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100152 .set_name("conv4_1")
153 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000154 << ConvolutionLayer(
155 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100156 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000157 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_2_b.npy"),
158 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100159 .set_name("conv4_2")
160 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000161 << ConvolutionLayer(
162 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100163 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_3_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000164 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_3_b.npy"),
165 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100166 .set_name("conv4_3")
167 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000168 << ConvolutionLayer(
169 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100170 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_4_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000171 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv4_4_b.npy"),
172 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100173 .set_name("conv4_4")
174 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv4_4/Relu")
175 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool4")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000176 // Layer 5
177 << ConvolutionLayer(
178 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100179 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000180 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_1_b.npy"),
181 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100182 .set_name("conv5_1")
183 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_1/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000184 << ConvolutionLayer(
185 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100186 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000187 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_2_b.npy"),
188 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100189 .set_name("conv5_2")
190 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_2/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000191 << ConvolutionLayer(
192 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100193 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_3_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000194 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_3_b.npy"),
195 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100196 .set_name("conv5_3")
197 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_3/Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000198 << ConvolutionLayer(
199 3U, 3U, 512U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100200 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_4_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000201 get_weights_accessor(data_path, "/cnn_data/vgg19_model/conv5_4_b.npy"),
202 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100203 .set_name("conv5_4")
204 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv5_4/Relu")
205 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool5")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000206 // Layer 6
207 << FullyConnectedLayer(
208 4096U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100209 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc6_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000210 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc6_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100211 .set_name("fc6")
212 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("Relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000213 // Layer 7
214 << FullyConnectedLayer(
215 4096U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100216 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc7_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000217 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc7_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100218 .set_name("fc7")
219 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("Relu_1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000220 // Layer 8
221 << FullyConnectedLayer(
222 1000U,
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100223 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc8_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000224 get_weights_accessor(data_path, "/cnn_data/vgg19_model/fc8_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100225 .set_name("fc8")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000226 // Softmax
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100227 << SoftmaxLayer().set_name("prob")
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100228 << OutputLayer(get_output_accessor(common_params, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000229
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000230 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000231 GraphConfig config;
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100232 config.num_threads = common_params.threads;
233 config.use_tuner = common_params.enable_tuner;
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100234 config.tuner_file = common_params.tuner_file;
235
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100236 graph.finalize(common_params.target, config);
237
238 return true;
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000239 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000240 void do_run() override
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000241 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000242 // Run graph
243 graph.run();
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000244 }
245
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000246private:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100247 CommandLineParser cmd_parser;
248 CommonGraphOptions common_opts;
249 CommonGraphParams common_params;
250 Stream graph;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000251};
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000252
253/** Main program for VGG19
254 *
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100255 * @note To list all the possible arguments execute the binary appended with the --help option
256 *
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000257 * @param[in] argc Number of arguments
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100258 * @param[in] argv Arguments
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000259 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000260int main(int argc, char **argv)
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000261{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000262 return arm_compute::utils::run_example<GraphVGG19Example>(argc, argv);
Isabella Gottardi9f20bda2017-11-03 17:16:20 +0000263}