blob: f90892aeee6e98c0cf01b877b0dc07c21fa55bf7 [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
Anthony Barbier46edf632018-01-26 14:27:15 +00002 * Copyright (c) 2017-2018 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"
Anthony Barbier2a07e182017-08-04 18:20:27 +010025#include "support/ToolchainSupport.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010026#include "utils/CommonGraphOptions.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010027#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;
Anthony Barbier2a07e182017-08-04 18:20:27 +010032using namespace arm_compute::graph_utils;
33
Anthony Barbier2a07e182017-08-04 18:20:27 +010034/** Example demonstrating how to implement LeNet's network using the Compute Library's graph API
35 *
36 * @param[in] argc Number of arguments
Giorgio Arena59631a12018-05-02 13:59:04 +010037 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL), [optional] Path to the weights folder, [optional] batches, [optional] Fast math for convolution layer (0 = DISABLED, 1 = ENABLED) )
Anthony Barbier2a07e182017-08-04 18:20:27 +010038 */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000039class GraphLenetExample : public Example
Anthony Barbier2a07e182017-08-04 18:20:27 +010040{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000041public:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010042 GraphLenetExample()
43 : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "LeNet")
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 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000048 // Parse arguments
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010049 cmd_parser.parse(argc, argv);
50
51 // Consume common parameters
52 common_params = consume_common_graph_parameters(common_opts);
53
54 // Return when help menu is requested
55 if(common_params.help)
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000056 {
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010057 cmd_parser.print_help(argv[0]);
58 return false;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000059 }
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010060
61 // Checks
62 ARM_COMPUTE_ERROR_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type), "Unsupported data type!");
63
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;
69 unsigned int batches = 4; /** Number of batches */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000070
71 //conv1 << pool1 << conv2 << pool2 << fc1 << act1 << fc2 << smx
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010072 graph << common_params.target
73 << common_params.fast_math_hint
74 << InputLayer(TensorDescriptor(TensorShape(28U, 28U, 1U, batches), common_params.data_type), get_input_accessor(common_params))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000075 << ConvolutionLayer(
76 5U, 5U, 20U,
77 get_weights_accessor(data_path, "/cnn_data/lenet_model/conv1_w.npy"),
78 get_weights_accessor(data_path, "/cnn_data/lenet_model/conv1_b.npy"),
79 PadStrideInfo(1, 1, 0, 0))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010080 .set_name("conv1")
81 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool1")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000082 << ConvolutionLayer(
83 5U, 5U, 50U,
84 get_weights_accessor(data_path, "/cnn_data/lenet_model/conv2_w.npy"),
85 get_weights_accessor(data_path, "/cnn_data/lenet_model/conv2_b.npy"),
86 PadStrideInfo(1, 1, 0, 0))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010087 .set_name("conv2")
88 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0))).set_name("pool2")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000089 << FullyConnectedLayer(
90 500U,
91 get_weights_accessor(data_path, "/cnn_data/lenet_model/ip1_w.npy"),
92 get_weights_accessor(data_path, "/cnn_data/lenet_model/ip1_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010093 .set_name("ip1")
94 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("relu")
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000095 << FullyConnectedLayer(
96 10U,
97 get_weights_accessor(data_path, "/cnn_data/lenet_model/ip2_w.npy"),
98 get_weights_accessor(data_path, "/cnn_data/lenet_model/ip2_b.npy"))
Georgios Pinitas5c2fb3f2018-05-01 15:26:20 +010099 .set_name("ip2")
100 << SoftmaxLayer().set_name("prob")
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100101 << OutputLayer(get_output_accessor(common_params));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000102
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000103 // Finalize graph
Georgios Pinitas9a8c6722018-03-21 17:52:35 +0000104 GraphConfig config;
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100105 config.num_threads = common_params.threads;
106 config.use_tuner = common_params.enable_tuner;
107 graph.finalize(common_params.target, config);
108
109 return true;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100110 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000111 void do_run() override
Anthony Barbier2a07e182017-08-04 18:20:27 +0100112 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000113 // Run graph
114 graph.run();
Anthony Barbier2a07e182017-08-04 18:20:27 +0100115 }
116
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000117private:
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100118 CommandLineParser cmd_parser;
119 CommonGraphOptions common_opts;
120 CommonGraphParams common_params;
121 Stream graph;
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000122};
Anthony Barbier2a07e182017-08-04 18:20:27 +0100123
124/** Main program for LeNet
125 *
126 * @param[in] argc Number of arguments
Isabella Gottardi88d5b222018-04-06 12:24:55 +0100127 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL, 2 = OpenCL with Tuner), [optional] Path to the weights folder, [optional] batches, [optional] Fast math for convolution layer (0 = DISABLED, 1 = ENABLED) )
Anthony Barbier2a07e182017-08-04 18:20:27 +0100128 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000129int main(int argc, char **argv)
Anthony Barbier2a07e182017-08-04 18:20:27 +0100130{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000131 return arm_compute::utils::run_example<GraphLenetExample>(argc, argv);
Anthony Barbier2a07e182017-08-04 18:20:27 +0100132}