blob: 066f16eb811be9d3ca1ba178f1e8b07b9a03b6b9 [file] [log] [blame]
Georgios Pinitas8fe103c2018-12-04 14:26:31 +00001/*
Michele Di Giorgio1df9cca2019-01-17 13:20:32 +00002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitas8fe103c2018-12-04 14:26: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::utils;
31using namespace arm_compute::graph::frontend;
32using namespace arm_compute::graph_utils;
33
34/** Example demonstrating how to implement SRCNN 9-5-5 network using the Compute Library's graph API */
35class GraphSRCNN955Example : public Example
36{
37public:
38 GraphSRCNN955Example()
39 : cmd_parser(), common_opts(cmd_parser), model_input_width(nullptr), model_input_height(nullptr), common_params(), graph(0, "SRCNN955")
40 {
41 model_input_width = cmd_parser.add_option<SimpleOption<unsigned int>>("image-width", 300);
42 model_input_height = cmd_parser.add_option<SimpleOption<unsigned int>>("image-height", 300);
43
44 // Add model id option
45 model_input_width->set_help("Input image width.");
46 model_input_height->set_help("Input image height.");
47 }
48 GraphSRCNN955Example(const GraphSRCNN955Example &) = delete;
49 GraphSRCNN955Example &operator=(const GraphSRCNN955Example &) = delete;
50 GraphSRCNN955Example(GraphSRCNN955Example &&) = default; // NOLINT
51 GraphSRCNN955Example &operator=(GraphSRCNN955Example &&) = default; // NOLINT
52 ~GraphSRCNN955Example() override = default;
53 bool do_setup(int argc, char **argv) override
54 {
55 // Parse arguments
56 cmd_parser.parse(argc, argv);
57
58 // Consume common parameters
59 common_params = consume_common_graph_parameters(common_opts);
60
61 // Return when help menu is requested
62 if(common_params.help)
63 {
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
77 // Checks
78 ARM_COMPUTE_EXIT_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type), "QASYMM8 not supported for this graph");
79
80 // Get trainable parameters data path
81 const std::string data_path = common_params.data_path;
82 const std::string model_path = "/cnn_data/srcnn955_model/";
83
84 // Create a preprocessor object
85 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<TFPreproccessor>();
86
87 // Create input descriptor
88 const TensorShape tensor_shape = permute_shape(TensorShape(image_width, image_height, 3U, 1U), DataLayout::NCHW, common_params.data_layout);
89 TensorDescriptor input_descriptor = TensorDescriptor(tensor_shape, common_params.data_type).set_layout(common_params.data_layout);
90
91 // Set weights trained layout
92 const DataLayout weights_layout = DataLayout::NCHW;
93
94 graph << common_params.target
95 << common_params.fast_math_hint
96 << InputLayer(input_descriptor, get_input_accessor(common_params, std::move(preprocessor), false /* Do not convert to BGR */))
97 << ConvolutionLayer(
98 9U, 9U, 64U,
99 get_weights_accessor(data_path, "conv1_weights.npy", weights_layout),
100 get_weights_accessor(data_path, "conv1_biases.npy"),
101 PadStrideInfo(1, 1, 4, 4))
102 .set_name("conv1/convolution")
103 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv1/Relu")
104 << ConvolutionLayer(
105 5U, 5U, 32U,
106 get_weights_accessor(data_path, "conv2_weights.npy", weights_layout),
107 get_weights_accessor(data_path, "conv2_biases.npy"),
108 PadStrideInfo(1, 1, 2, 2))
109 .set_name("conv2/convolution")
110 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv2/Relu")
111 << ConvolutionLayer(
112 5U, 5U, 3U,
113 get_weights_accessor(data_path, "conv3_weights.npy", weights_layout),
114 get_weights_accessor(data_path, "conv3_biases.npy"),
115 PadStrideInfo(1, 1, 2, 2))
116 .set_name("conv3/convolution")
117 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU)).set_name("conv3/Relu")
118 << OutputLayer(arm_compute::support::cpp14::make_unique<DummyAccessor>(0));
119
120 // Finalize graph
121 GraphConfig config;
122 config.num_threads = common_params.threads;
123 config.use_tuner = common_params.enable_tuner;
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100124 config.tuner_mode = common_params.tuner_mode;
Michele Di Giorgio1df9cca2019-01-17 13:20:32 +0000125 config.tuner_file = common_params.tuner_file;
126
Georgios Pinitas8fe103c2018-12-04 14:26:31 +0000127 graph.finalize(common_params.target, config);
128
129 return true;
130 }
131
132 void do_run() override
133 {
134 // Run graph
135 graph.run();
136 }
137
138private:
139 CommandLineParser cmd_parser;
140 CommonGraphOptions common_opts;
141 SimpleOption<unsigned int> *model_input_width{ nullptr };
142 SimpleOption<unsigned int> *model_input_height{ nullptr };
143 CommonGraphParams common_params;
144 Stream graph;
145};
146
147/** Main program for SRCNN 9-5-5
148 *
149 * Model is based on:
150 * http://mmlab.ie.cuhk.edu.hk/projects/SRCNN.html
151 * "Image Super-Resolution Using Deep Convolutional Networks"
152 * Chao Dong, Chen Change Loy, Kaiming He, Xiaoou Tang
153 *
154 * @note To list all the possible arguments execute the binary appended with the --help option
155 *
156 * @param[in] argc Number of arguments
157 * @param[in] argv Arguments
158 */
159int main(int argc, char **argv)
160{
161 return arm_compute::utils::run_example<GraphSRCNN955Example>(argc, argv);
162}