blob: 7d6dce7b170c752025314dd2869171872619387f [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
SiCong Li4841c972021-02-03 12:17:35 +00002 * Copyright (c) 2017-2021 Arm Limited.
Anthony Barbier2a07e182017-08-04 18:20:27 +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"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010025
Anthony Barbier2a07e182017-08-04 18:20:27 +010026#include "support/ToolchainSupport.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010027#include "utils/CommonGraphOptions.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010028#include "utils/GraphUtils.h"
29#include "utils/Utils.h"
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;
Anthony Barbier2a07e182017-08-04 18:20:27 +010033using namespace arm_compute::graph_utils;
34
Georgios Pinitas108ab0b2018-09-14 18:35:11 +010035/** Example demonstrating how to implement LeNet's network using the Compute Library's graph API */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000036class GraphLenetExample : public Example
Anthony Barbier2a07e182017-08-04 18:20:27 +010037{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000038public:
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010039 GraphLenetExample() : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "LeNet")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000040 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010041 }
42 bool do_setup(int argc, char **argv) override
43 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000044 // Parse arguments
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010045 cmd_parser.parse(argc, argv);
Georgios Pinitascd60a5f2019-08-21 17:06:54 +010046 cmd_parser.validate();
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010047
48 // Consume common parameters
49 common_params = consume_common_graph_parameters(common_opts);
50
51 // Return when help menu is requested
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010052 if (common_params.help)
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000053 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010054 cmd_parser.print_help(argv[0]);
55 return false;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000056 }
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010057
58 // Checks
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010059 ARM_COMPUTE_EXIT_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type),
60 "QASYMM8 not supported for this graph");
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010061
62 // Print parameter values
63 std::cout << common_params << std::endl;
64
65 // Get trainable parameters data path
66 std::string data_path = common_params.data_path;
67 unsigned int batches = 4; /** Number of batches */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000068
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010069 // Create input descriptor
Sang-Hoon Park11fedda2020-01-15 14:44:04 +000070 const auto operation_layout = common_params.data_layout;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010071 const TensorShape tensor_shape =
72 permute_shape(TensorShape(28U, 28U, 1U, batches), DataLayout::NCHW, operation_layout);
73 TensorDescriptor input_descriptor =
74 TensorDescriptor(tensor_shape, common_params.data_type).set_layout(operation_layout);
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010075
76 // Set weights trained layout
77 const DataLayout weights_layout = DataLayout::NCHW;
78
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000079 //conv1 << pool1 << conv2 << pool2 << fc1 << act1 << fc2 << smx
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010080 graph << common_params.target << common_params.fast_math_hint
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010081 << InputLayer(input_descriptor, get_input_accessor(common_params))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000082 << ConvolutionLayer(
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010083 5U, 5U, 20U, get_weights_accessor(data_path, "/cnn_data/lenet_model/conv1_w.npy", weights_layout),
84 get_weights_accessor(data_path, "/cnn_data/lenet_model/conv1_b.npy"), PadStrideInfo(1, 1, 0, 0))
85 .set_name("conv1")
86 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, operation_layout, PadStrideInfo(2, 2, 0, 0)))
87 .set_name("pool1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000088 << ConvolutionLayer(
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010089 5U, 5U, 50U, get_weights_accessor(data_path, "/cnn_data/lenet_model/conv2_w.npy", weights_layout),
90 get_weights_accessor(data_path, "/cnn_data/lenet_model/conv2_b.npy"), PadStrideInfo(1, 1, 0, 0))
91 .set_name("conv2")
92 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, operation_layout, PadStrideInfo(2, 2, 0, 0)))
93 .set_name("pool2")
94 << FullyConnectedLayer(500U,
95 get_weights_accessor(data_path, "/cnn_data/lenet_model/ip1_w.npy", weights_layout),
96 get_weights_accessor(data_path, "/cnn_data/lenet_model/ip1_b.npy"))
97 .set_name("ip1")
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010098 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu")
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010099 << FullyConnectedLayer(10U,
100 get_weights_accessor(data_path, "/cnn_data/lenet_model/ip2_w.npy", weights_layout),
101 get_weights_accessor(data_path, "/cnn_data/lenet_model/ip2_b.npy"))
102 .set_name("ip2")
103 << SoftmaxLayer().set_name("prob") << OutputLayer(get_output_accessor(common_params));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000104
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000105 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000106 GraphConfig config;
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100107 config.num_threads = common_params.threads;
108 config.use_tuner = common_params.enable_tuner;
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100109 config.tuner_mode = common_params.tuner_mode;
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100110 config.tuner_file = common_params.tuner_file;
SiCong Li4841c972021-02-03 12:17:35 +0000111 config.mlgo_file = common_params.mlgo_file;
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100112
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100113 graph.finalize(common_params.target, config);
114
115 return true;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100116 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000117 void do_run() override
Anthony Barbier2a07e182017-08-04 18:20:27 +0100118 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000119 // Run graph
120 graph.run();
Anthony Barbier2a07e182017-08-04 18:20:27 +0100121 }
122
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000123private:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100124 CommandLineParser cmd_parser;
125 CommonGraphOptions common_opts;
126 CommonGraphParams common_params;
127 Stream graph;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000128};
Anthony Barbier2a07e182017-08-04 18:20:27 +0100129
130/** Main program for LeNet
131 *
SiCongLi4d7fff12021-06-04 10:47:07 +0100132 * Model is based on:
133 * http://yann.lecun.com/exdb/publis/pdf/lecun-98.pdf
134 * "Gradient-Based Learning Applied to Document Recognition"
135 * Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner
136 *
137 * The original model uses tanh instead of relu activations. However the use of relu activations in lenet has been
138 * widely adopted to improve accuracy.*
139 *
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100140 * @note To list all the possible arguments execute the binary appended with the --help option
141 *
Anthony Barbier2a07e182017-08-04 18:20:27 +0100142 * @param[in] argc Number of arguments
Georgios Pinitas9f28b392018-07-18 20:01:53 +0100143 * @param[in] argv Arguments
Anthony Barbier2a07e182017-08-04 18:20:27 +0100144 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000145int main(int argc, char **argv)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100146{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000147 return arm_compute::utils::run_example<GraphLenetExample>(argc, argv);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100148}