blob: 40bbee1d68ea2ab0be700e3297165ee2b1521de4 [file] [log] [blame]
Georgios Pinitas6f669f02017-09-26 12:32:57 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Georgios Pinitas6f669f02017-09-26 12:32:57 +01003 *
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"
Inki Daeea2ce172020-04-09 10:01:44 +090025#ifdef ARM_COMPUTE_CL
26#include "arm_compute/runtime/CL/Utils.h"
27#endif /* ARM_COMPUTE_CL */
Georgios Pinitas6f669f02017-09-26 12:32:57 +010028#include "support/ToolchainSupport.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010029#include "utils/CommonGraphOptions.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010030#include "utils/GraphUtils.h"
31#include "utils/Utils.h"
32
Inki Daeea2ce172020-04-09 10:01:44 +090033using namespace arm_compute;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000034using namespace arm_compute::utils;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010035using namespace arm_compute::graph::frontend;
Georgios Pinitas6f669f02017-09-26 12:32:57 +010036using namespace arm_compute::graph_utils;
37
Georgios Pinitas108ab0b2018-09-14 18:35:11 +010038/** Example demonstrating how to implement AlexNet's network using the Compute Library's graph API */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000039class GraphAlexnetExample : public Example
Georgios Pinitas6f669f02017-09-26 12:32:57 +010040{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000041public:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010042 GraphAlexnetExample()
43 : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "AlexNet")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000044 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010045 }
46 bool do_setup(int argc, char **argv) override
47 {
48 // Parse arguments
49 cmd_parser.parse(argc, argv);
Georgios Pinitascd60a5f2019-08-21 17:06:54 +010050 cmd_parser.validate();
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010051
52 // Consume common parameters
53 common_params = consume_common_graph_parameters(common_opts);
54
55 // Return when help menu is requested
56 if(common_params.help)
57 {
58 cmd_parser.print_help(argv[0]);
59 return false;
60 }
61
62 // Checks
Anthony Barbiercdd68c02018-08-23 15:03:41 +010063 ARM_COMPUTE_EXIT_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type), "QASYMM8 not supported for this graph");
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010064
65 // Print parameter values
66 std::cout << common_params << std::endl;
67
68 // Get trainable parameters data path
69 std::string data_path = common_params.data_path;
Gian Marco44ec2e72017-10-19 14:13:38 +010070
Georgios Pinitas140fdc72018-02-16 11:42:38 +000071 // Create a preprocessor object
72 const std::array<float, 3> mean_rgb{ { 122.68f, 116.67f, 104.01f } };
73 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<CaffePreproccessor>(mean_rgb);
Georgios Pinitas6f669f02017-09-26 12:32:57 +010074
Georgios Pinitase2220552018-07-20 13:23:44 +010075 // Create input descriptor
Sang-Hoon Park11fedda2020-01-15 14:44:04 +000076 const auto operation_layout = common_params.data_layout;
77 const TensorShape tensor_shape = permute_shape(TensorShape(227U, 227U, 3U, 1U), DataLayout::NCHW, operation_layout);
78 TensorDescriptor input_descriptor = TensorDescriptor(tensor_shape, common_params.data_type).set_layout(operation_layout);
Georgios Pinitase2220552018-07-20 13:23:44 +010079
80 // Set weights trained layout
81 const DataLayout weights_layout = DataLayout::NCHW;
82
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010083 graph << common_params.target
84 << common_params.fast_math_hint
Georgios Pinitase2220552018-07-20 13:23:44 +010085 << InputLayer(input_descriptor, get_input_accessor(common_params, std::move(preprocessor)))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000086 // Layer 1
87 << ConvolutionLayer(
88 11U, 11U, 96U,
Georgios Pinitase2220552018-07-20 13:23:44 +010089 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv1_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000090 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv1_b.npy"),
91 PadStrideInfo(4, 4, 0, 0))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010092 .set_name("conv1")
93 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu1")
94 << NormalizationLayer(NormalizationLayerInfo(NormType::CROSS_MAP, 5, 0.0001f, 0.75f)).set_name("norm1")
Sang-Hoon Park11fedda2020-01-15 14:44:04 +000095 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, operation_layout, PadStrideInfo(2, 2, 0, 0))).set_name("pool1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000096 // Layer 2
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000097 << ConvolutionLayer(
98 5U, 5U, 256U,
Georgios Pinitase2220552018-07-20 13:23:44 +010099 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv2_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000100 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv2_b.npy"),
101 PadStrideInfo(1, 1, 2, 2), 2)
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100102 .set_name("conv2")
103 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu2")
104 << NormalizationLayer(NormalizationLayerInfo(NormType::CROSS_MAP, 5, 0.0001f, 0.75f)).set_name("norm2")
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000105 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, operation_layout, PadStrideInfo(2, 2, 0, 0))).set_name("pool2")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000106 // Layer 3
107 << ConvolutionLayer(
108 3U, 3U, 384U,
Georgios Pinitase2220552018-07-20 13:23:44 +0100109 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv3_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000110 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv3_b.npy"),
111 PadStrideInfo(1, 1, 1, 1))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100112 .set_name("conv3")
113 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu3")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000114 // Layer 4
115 << ConvolutionLayer(
116 3U, 3U, 384U,
Georgios Pinitase2220552018-07-20 13:23:44 +0100117 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv4_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000118 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv4_b.npy"),
119 PadStrideInfo(1, 1, 1, 1), 2)
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100120 .set_name("conv4")
121 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu4")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000122 // Layer 5
123 << ConvolutionLayer(
124 3U, 3U, 256U,
Georgios Pinitase2220552018-07-20 13:23:44 +0100125 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv5_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000126 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv5_b.npy"),
127 PadStrideInfo(1, 1, 1, 1), 2)
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100128 .set_name("conv5")
129 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu5")
Sang-Hoon Park11fedda2020-01-15 14:44:04 +0000130 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, operation_layout, PadStrideInfo(2, 2, 0, 0))).set_name("pool5")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000131 // Layer 6
132 << FullyConnectedLayer(
133 4096U,
Georgios Pinitase2220552018-07-20 13:23:44 +0100134 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc6_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000135 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc6_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100136 .set_name("fc6")
137 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu6")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000138 // Layer 7
139 << FullyConnectedLayer(
140 4096U,
Georgios Pinitase2220552018-07-20 13:23:44 +0100141 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc7_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000142 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc7_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100143 .set_name("fc7")
144 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu7")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000145 // Layer 8
146 << FullyConnectedLayer(
147 1000U,
Georgios Pinitase2220552018-07-20 13:23:44 +0100148 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc8_w.npy", weights_layout),
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000149 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc8_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100150 .set_name("fc8")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000151 // Softmax
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +0100152 << SoftmaxLayer().set_name("prob")
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100153 << OutputLayer(get_output_accessor(common_params, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000154
Georgios Pinitasee33ea52018-03-08 16:01:29 +0000155 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000156 GraphConfig config;
Pablo Tellodb9116f2019-07-11 16:50:37 +0100157
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100158 config.num_threads = common_params.threads;
159 config.use_tuner = common_params.enable_tuner;
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100160 config.tuner_mode = common_params.tuner_mode;
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100161 config.tuner_file = common_params.tuner_file;
162
Pablo Tellodb9116f2019-07-11 16:50:37 +0100163 // Load the precompiled kernels from a file into the kernel library, in this way the next time they are needed
164 // compilation won't be required.
165 if(common_params.enable_cl_cache)
166 {
Inki Daeea2ce172020-04-09 10:01:44 +0900167#ifdef ARM_COMPUTE_CL
Pablo Tellodb9116f2019-07-11 16:50:37 +0100168 restore_program_cache_from_file();
Inki Daeea2ce172020-04-09 10:01:44 +0900169#endif /* ARM_COMPUTE_CL */
Pablo Tellodb9116f2019-07-11 16:50:37 +0100170 }
171
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100172 graph.finalize(common_params.target, config);
173
Pablo Tellodb9116f2019-07-11 16:50:37 +0100174 // Save the opencl kernels to a file
175 if(common_opts.enable_cl_cache)
176 {
Inki Daeea2ce172020-04-09 10:01:44 +0900177#ifdef ARM_COMPUTE_CL
Pablo Tellodb9116f2019-07-11 16:50:37 +0100178 save_program_cache_to_file();
Inki Daeea2ce172020-04-09 10:01:44 +0900179#endif /* ARM_COMPUTE_CL */
Pablo Tellodb9116f2019-07-11 16:50:37 +0100180 }
181
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100182 return true;
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100183 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000184 void do_run() override
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100185 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000186 // Run graph
187 graph.run();
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100188 }
189
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000190private:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100191 CommandLineParser cmd_parser;
192 CommonGraphOptions common_opts;
193 CommonGraphParams common_params;
194 Stream graph;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000195};
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100196
197/** Main program for AlexNet
198 *
Georgios Pinitasbdbbbe82018-11-07 16:06:47 +0000199 * Model is based on:
200 * https://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks
201 * "ImageNet Classification with Deep Convolutional Neural Networks"
202 * Alex Krizhevsky and Sutskever, Ilya and Hinton, Geoffrey E
203 *
Georgios Pinitas588ebc52018-12-21 13:39:07 +0000204 * Provenance: https://github.com/BVLC/caffe/tree/master/models/bvlc_alexnet
205 *
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100206 * @note To list all the possible arguments execute the binary appended with the --help option
207 *
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100208 * @param[in] argc Number of arguments
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100209 * @param[in] argv Arguments
210 *
211 * @return Return code
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100212 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000213int main(int argc, char **argv)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100214{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000215 return arm_compute::utils::run_example<GraphAlexnetExample>(argc, argv);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100216}