blob: f82ae4c20ea4ff2e643f97ec3b7a44ffaebc5898 [file] [log] [blame]
Georgios Pinitas0e2b5262018-12-04 11:55:31 +00001/*
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +01002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitas0e2b5262018-12-04 11:55:31 +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 */
24#include "arm_compute/graph.h"
25#include "support/ToolchainSupport.h"
26#include "utils/CommonGraphOptions.h"
27#include "utils/GraphUtils.h"
28#include "utils/Utils.h"
29
30using namespace arm_compute;
31using namespace arm_compute::utils;
32using namespace arm_compute::graph::frontend;
33using namespace arm_compute::graph_utils;
34
35/** Example demonstrating how to implement VGG based VDSR network using the Compute Library's graph API */
36class GraphVDSRExample : public Example
37{
38public:
39 GraphVDSRExample()
40 : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "VDSR")
41 {
42 model_input_width = cmd_parser.add_option<SimpleOption<unsigned int>>("image-width", 192);
43 model_input_height = cmd_parser.add_option<SimpleOption<unsigned int>>("image-height", 192);
44
45 // Add model id option
46 model_input_width->set_help("Input image width.");
47 model_input_height->set_help("Input image height.");
48 }
49 GraphVDSRExample(const GraphVDSRExample &) = delete;
50 GraphVDSRExample &operator=(const GraphVDSRExample &) = delete;
51 GraphVDSRExample(GraphVDSRExample &&) = default; // NOLINT
52 GraphVDSRExample &operator=(GraphVDSRExample &&) = default; // NOLINT
53 ~GraphVDSRExample() override = default;
54 bool do_setup(int argc, char **argv) override
55 {
56 // Parse arguments
57 cmd_parser.parse(argc, argv);
Georgios Pinitascd60a5f2019-08-21 17:06:54 +010058 cmd_parser.validate();
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000059
60 // Consume common parameters
61 common_params = consume_common_graph_parameters(common_opts);
62
63 // Return when help menu is requested
64 if(common_params.help)
65 {
66 cmd_parser.print_help(argv[0]);
67 return false;
68 }
69
70 // Get input image width and height
71 const unsigned int image_width = model_input_width->value();
72 const unsigned int image_height = model_input_height->value();
73
74 // Print parameter values
75 std::cout << common_params << std::endl;
76 std::cout << "Image width: " << image_width << std::endl;
77 std::cout << "Image height: " << image_height << std::endl;
78
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000079 // Get trainable parameters data path
80 const std::string data_path = common_params.data_path;
81 const std::string model_path = "/cnn_data/vdsr_model/";
82
83 // Create a preprocessor object
84 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<TFPreproccessor>();
85
86 // Create input descriptor
87 const TensorShape tensor_shape = permute_shape(TensorShape(image_width, image_height, 1U, 1U), DataLayout::NCHW, common_params.data_layout);
88 TensorDescriptor input_descriptor = TensorDescriptor(tensor_shape, common_params.data_type).set_layout(common_params.data_layout);
89
90 // Set weights trained layout
91 const DataLayout weights_layout = DataLayout::NCHW;
92
93 // Note: Quantization info are random and used only for benchmarking purposes
94 graph << common_params.target
95 << common_params.fast_math_hint
96 << InputLayer(input_descriptor.set_quantization_info(QuantizationInfo(0.0078125f, 128)),
97 get_input_accessor(common_params, std::move(preprocessor), false));
98
99 SubStream left(graph);
100 SubStream right(graph);
101
102 // Layer 1
103 right << ConvolutionLayer(
104 3U, 3U, 64U,
105 get_weights_accessor(data_path, "conv0_w.npy", weights_layout),
106 get_weights_accessor(data_path, "conv0_b.npy"),
107 PadStrideInfo(1, 1, 1, 1), 1, QuantizationInfo(0.031778190285f, 156), QuantizationInfo(0.0784313753247f, 128))
108 .set_name("conv0")
109 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv0/Relu");
110
111 // Rest 17 layers
112 for(unsigned int i = 1; i < 19; ++i)
113 {
114 const std::string conv_w_path = "conv" + arm_compute::support::cpp11::to_string(i) + "_w.npy";
115 const std::string conv_b_path = "conv" + arm_compute::support::cpp11::to_string(i) + "_b.npy";
116 const std::string conv_name = "conv" + arm_compute::support::cpp11::to_string(i);
117 right << ConvolutionLayer(
118 3U, 3U, 64U,
119 get_weights_accessor(data_path, conv_w_path, weights_layout),
120 get_weights_accessor(data_path, conv_b_path),
121 PadStrideInfo(1, 1, 1, 1), 1, QuantizationInfo(0.015851572156f, 93))
122 .set_name(conv_name)
123 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name(conv_name + "/Relu");
124 }
125
126 // Final layer
127 right << ConvolutionLayer(
128 3U, 3U, 1U,
129 get_weights_accessor(data_path, "conv20_w.npy", weights_layout),
130 get_weights_accessor(data_path, "conv20_b.npy"),
131 PadStrideInfo(1, 1, 1, 1), 1, QuantizationInfo(0.015851572156f, 93))
132 .set_name("conv20")
133 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv20/Relu");
134
135 // Add residual to input
136 graph << EltwiseLayer(std::move(left), std::move(right), EltwiseOperation::Add).set_name("add")
137 << OutputLayer(arm_compute::support::cpp14::make_unique<DummyAccessor>(0));
138
139 // Finalize graph
140 GraphConfig config;
141 config.num_threads = common_params.threads;
142 config.use_tuner = common_params.enable_tuner;
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100143 config.tuner_mode = common_params.tuner_mode;
Georgios Pinitas0e2b5262018-12-04 11:55:31 +0000144 config.tuner_file = common_params.tuner_file;
145
146 graph.finalize(common_params.target, config);
147
148 return true;
149 }
150 void do_run() override
151 {
152 // Run graph
153 graph.run();
154 }
155
156private:
157 CommandLineParser cmd_parser;
158 CommonGraphOptions common_opts;
159 SimpleOption<unsigned int> *model_input_width{ nullptr };
160 SimpleOption<unsigned int> *model_input_height{ nullptr };
161 CommonGraphParams common_params;
162 Stream graph;
163};
164
165/** Main program for VGG-based VDSR
166 *
167 * Model is based on:
168 * https://arxiv.org/pdf/1511.04587.pdf
169 * "Accurate Image Super-Resolution Using Very Deep Convolutional Networks"
170 * Jiwon Kim, Jung Kwon Lee and Kyoung Mu Lee
171 *
172 * @note To list all the possible arguments execute the binary appended with the --help option
173 *
174 * @param[in] argc Number of arguments
175 * @param[in] argv Arguments
176 */
177int main(int argc, char **argv)
178{
179 return arm_compute::utils::run_example<GraphVDSRExample>(argc, argv);
180}