blob: a6cd337f82ac7cb58b534971a58d784d58232951 [file] [log] [blame]
Georgios Pinitas0e2b5262018-12-04 11:55:31 +00001/*
SiCong Li4841c972021-02-03 12:17:35 +00002 * Copyright (c) 2018-2021 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"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010025
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000026#include "support/ToolchainSupport.h"
27#include "utils/CommonGraphOptions.h"
28#include "utils/GraphUtils.h"
29#include "utils/Utils.h"
30
31using namespace arm_compute;
32using namespace arm_compute::utils;
33using namespace arm_compute::graph::frontend;
34using namespace arm_compute::graph_utils;
35
36/** Example demonstrating how to implement VGG based VDSR network using the Compute Library's graph API */
37class GraphVDSRExample : public Example
38{
39public:
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010040 GraphVDSRExample() : cmd_parser(), common_opts(cmd_parser), common_params(), graph(0, "VDSR")
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000041 {
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 }
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010049 GraphVDSRExample(const GraphVDSRExample &) = delete;
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000050 GraphVDSRExample &operator=(const GraphVDSRExample &) = delete;
Matthew Benthamf5f23912020-03-05 22:32:16 +000051 ~GraphVDSRExample() override = default;
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000052 bool do_setup(int argc, char **argv) override
53 {
54 // Parse arguments
55 cmd_parser.parse(argc, argv);
Georgios Pinitascd60a5f2019-08-21 17:06:54 +010056 cmd_parser.validate();
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000057
58 // Consume common parameters
59 common_params = consume_common_graph_parameters(common_opts);
60
61 // Return when help menu is requested
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010062 if (common_params.help)
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000063 {
64 cmd_parser.print_help(argv[0]);
65 return false;
66 }
67
68 // Get input image width and height
69 const unsigned int image_width = model_input_width->value();
70 const unsigned int image_height = model_input_height->value();
71
72 // Print parameter values
73 std::cout << common_params << std::endl;
74 std::cout << "Image width: " << image_width << std::endl;
75 std::cout << "Image height: " << image_height << std::endl;
76
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000077 // Get trainable parameters data path
78 const std::string data_path = common_params.data_path;
79 const std::string model_path = "/cnn_data/vdsr_model/";
80
81 // Create a preprocessor object
Georgios Pinitas40f51a62020-11-21 03:04:18 +000082 std::unique_ptr<IPreprocessor> preprocessor = std::make_unique<TFPreproccessor>();
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000083
84 // Create input descriptor
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010085 const TensorShape tensor_shape =
86 permute_shape(TensorShape(image_width, image_height, 1U, common_params.batches), DataLayout::NCHW,
87 common_params.data_layout);
88 TensorDescriptor input_descriptor =
89 TensorDescriptor(tensor_shape, common_params.data_type).set_layout(common_params.data_layout);
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000090
91 // Set weights trained layout
92 const DataLayout weights_layout = DataLayout::NCHW;
93
94 // Note: Quantization info are random and used only for benchmarking purposes
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010095 graph << common_params.target << common_params.fast_math_hint
Georgios Pinitas0e2b5262018-12-04 11:55:31 +000096 << 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
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100103 right << ConvolutionLayer(3U, 3U, 64U, get_weights_accessor(data_path, "conv0_w.npy", weights_layout),
104 get_weights_accessor(data_path, "conv0_b.npy"), PadStrideInfo(1, 1, 1, 1), 1,
105 QuantizationInfo(0.031778190285f, 156), QuantizationInfo(0.0784313753247f, 128))
106 .set_name("conv0")
107 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
108 .set_name("conv0/Relu");
Georgios Pinitas0e2b5262018-12-04 11:55:31 +0000109
110 // Rest 17 layers
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100111 for (unsigned int i = 1; i < 19; ++i)
Georgios Pinitas0e2b5262018-12-04 11:55:31 +0000112 {
113 const std::string conv_w_path = "conv" + arm_compute::support::cpp11::to_string(i) + "_w.npy";
114 const std::string conv_b_path = "conv" + arm_compute::support::cpp11::to_string(i) + "_b.npy";
115 const std::string conv_name = "conv" + arm_compute::support::cpp11::to_string(i);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100116 right << ConvolutionLayer(3U, 3U, 64U, get_weights_accessor(data_path, conv_w_path, weights_layout),
117 get_weights_accessor(data_path, conv_b_path), PadStrideInfo(1, 1, 1, 1), 1,
118 QuantizationInfo(0.015851572156f, 93))
119 .set_name(conv_name)
120 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
121 .set_name(conv_name + "/Relu");
Georgios Pinitas0e2b5262018-12-04 11:55:31 +0000122 }
123
124 // Final layer
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100125 right << ConvolutionLayer(3U, 3U, 1U, get_weights_accessor(data_path, "conv20_w.npy", weights_layout),
126 get_weights_accessor(data_path, "conv20_b.npy"), PadStrideInfo(1, 1, 1, 1), 1,
127 QuantizationInfo(0.015851572156f, 93))
128 .set_name("conv20")
129 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
130 .set_name("conv20/Relu");
Georgios Pinitas0e2b5262018-12-04 11:55:31 +0000131
132 // Add residual to input
133 graph << EltwiseLayer(std::move(left), std::move(right), EltwiseOperation::Add).set_name("add")
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000134 << OutputLayer(std::make_unique<DummyAccessor>(0));
Georgios Pinitas0e2b5262018-12-04 11:55:31 +0000135
136 // Finalize graph
137 GraphConfig config;
SiCongLif466d752021-03-01 15:26:18 +0000138 config.num_threads = common_params.threads;
139 config.use_tuner = common_params.enable_tuner;
140 config.tuner_mode = common_params.tuner_mode;
141 config.tuner_file = common_params.tuner_file;
142 config.mlgo_file = common_params.mlgo_file;
143 config.use_synthetic_type = arm_compute::is_data_type_quantized(common_params.data_type);
144 config.synthetic_type = common_params.data_type;
Georgios Pinitas0e2b5262018-12-04 11:55:31 +0000145
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;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100159 SimpleOption<unsigned int> *model_input_width{nullptr};
160 SimpleOption<unsigned int> *model_input_height{nullptr};
Georgios Pinitas0e2b5262018-12-04 11:55:31 +0000161 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}