blob: f887f97a129c5c24463863577fe6747b16357333 [file] [log] [blame]
Georgios Pinitas6f669f02017-09-26 12:32:57 +01001/*
Gian Marco36a0a462018-01-12 10:21:40 +00002 * Copyright (c) 2017-2018 ARM Limited.
Georgios Pinitas6f669f02017-09-26 12:32:57 +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 Pinitas6f669f02017-09-26 12:32:57 +010024#include "arm_compute/graph/Graph.h"
25#include "arm_compute/graph/Nodes.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010026#include "support/ToolchainSupport.h"
27#include "utils/GraphUtils.h"
28#include "utils/Utils.h"
29
30#include <cstdlib>
31#include <iostream>
32#include <memory>
33
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000034using namespace arm_compute::utils;
Georgios Pinitas6f669f02017-09-26 12:32:57 +010035using namespace arm_compute::graph;
36using namespace arm_compute::graph_utils;
37
Georgios Pinitas6f669f02017-09-26 12:32:57 +010038/** Example demonstrating how to implement AlexNet's network using the Compute Library's graph API
39 *
40 * @param[in] argc Number of arguments
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +000041 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL, 2 = OpenCL with Tuner), [optional] Path to the weights folder, [optional] image, [optional] labels )
Georgios Pinitas6f669f02017-09-26 12:32:57 +010042 */
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000043class GraphAlexnetExample : public Example
Georgios Pinitas6f669f02017-09-26 12:32:57 +010044{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000045public:
46 void do_setup(int argc, char **argv) override
47 {
48 std::string data_path; /* Path to the trainable data */
49 std::string image; /* Image data */
50 std::string label; /* Label data */
Gian Marco44ec2e72017-10-19 14:13:38 +010051
Georgios Pinitas140fdc72018-02-16 11:42:38 +000052 // Create a preprocessor object
53 const std::array<float, 3> mean_rgb{ { 122.68f, 116.67f, 104.01f } };
54 std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<CaffePreproccessor>(mean_rgb);
Georgios Pinitas6f669f02017-09-26 12:32:57 +010055
Michele Di Giorgioe3fba0a2018-02-14 14:18:01 +000056 // Set target. 0 (NEON), 1 (OpenCL), 2 (OpenCL with Tuner). By default it is NEON
57 const int int_target_hint = argc > 1 ? std::strtol(argv[1], nullptr, 10) : 0;
58 TargetHint target_hint = set_target_hint(int_target_hint);
Gian Marco36a0a462018-01-12 10:21:40 +000059
Gian Marco Iodiceed99f412018-03-21 17:45:31 +000060 const bool is_gemm_convolution5x5 = Graph::gpu_target() == arm_compute::GPUTarget::MIDGARD || target_hint == TargetHint::NEON;
61 const bool is_winograd_convolution3x3 = target_hint == TargetHint::OPENCL;
62 ConvolutionMethodHint convolution_5x5_hint = is_gemm_convolution5x5 ? ConvolutionMethodHint::GEMM : ConvolutionMethodHint::DIRECT;
63 ConvolutionMethodHint convolution_3x3_hint = is_winograd_convolution3x3 ? ConvolutionMethodHint::WINOGRAD : ConvolutionMethodHint::GEMM;
Gian Marcobfa3b522017-12-12 10:08:38 +000064
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +000065 // Parse arguments
66 if(argc < 2)
67 {
68 // Print help
69 std::cout << "Usage: " << argv[0] << " [target] [path_to_data] [image] [labels]\n\n";
70 std::cout << "No data folder provided: using random values\n\n";
71 }
72 else if(argc == 2)
73 {
74 std::cout << "Usage: " << argv[0] << " " << argv[1] << " [path_to_data] [image] [labels]\n\n";
75 std::cout << "No data folder provided: using random values\n\n";
76 }
77 else if(argc == 3)
78 {
79 data_path = argv[2];
80 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " [image] [labels]\n\n";
81 std::cout << "No image provided: using random values\n\n";
82 }
83 else if(argc == 4)
84 {
85 data_path = argv[2];
86 image = argv[3];
87 std::cout << "Usage: " << argv[0] << " " << argv[1] << " " << argv[2] << " " << argv[3] << " [labels]\n\n";
88 std::cout << "No text file with labels provided: skipping output accessor\n\n";
89 }
90 else
91 {
92 data_path = argv[2];
93 image = argv[3];
94 label = argv[4];
95 }
96
97 graph << target_hint
98 << Tensor(TensorInfo(TensorShape(227U, 227U, 3U, 1U), 1, DataType::F32),
Georgios Pinitas140fdc72018-02-16 11:42:38 +000099 get_input_accessor(image, std::move(preprocessor)))
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000100 // Layer 1
101 << ConvolutionLayer(
102 11U, 11U, 96U,
103 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv1_w.npy"),
104 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv1_b.npy"),
105 PadStrideInfo(4, 4, 0, 0))
106 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
107 << NormalizationLayer(NormalizationLayerInfo(NormType::CROSS_MAP, 5, 0.0001f, 0.75f))
108 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, PadStrideInfo(2, 2, 0, 0)))
109 // Layer 2
Gian Marco36a0a462018-01-12 10:21:40 +0000110 << convolution_5x5_hint
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000111 << ConvolutionLayer(
112 5U, 5U, 256U,
113 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv2_w.npy"),
114 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv2_b.npy"),
115 PadStrideInfo(1, 1, 2, 2), 2)
116 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
117 << NormalizationLayer(NormalizationLayerInfo(NormType::CROSS_MAP, 5, 0.0001f, 0.75f))
118 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, PadStrideInfo(2, 2, 0, 0)))
Gian Marco Iodiceed99f412018-03-21 17:45:31 +0000119 << convolution_3x3_hint
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000120 // Layer 3
121 << ConvolutionLayer(
122 3U, 3U, 384U,
123 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv3_w.npy"),
124 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv3_b.npy"),
125 PadStrideInfo(1, 1, 1, 1))
126 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
127 // Layer 4
128 << ConvolutionLayer(
129 3U, 3U, 384U,
130 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv4_w.npy"),
131 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv4_b.npy"),
132 PadStrideInfo(1, 1, 1, 1), 2)
133 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
134 // Layer 5
135 << ConvolutionLayer(
136 3U, 3U, 256U,
137 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv5_w.npy"),
138 get_weights_accessor(data_path, "/cnn_data/alexnet_model/conv5_b.npy"),
139 PadStrideInfo(1, 1, 1, 1), 2)
140 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
141 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 3, PadStrideInfo(2, 2, 0, 0)))
142 // Layer 6
143 << FullyConnectedLayer(
144 4096U,
145 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc6_w.npy"),
146 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc6_b.npy"))
147 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
148 // Layer 7
149 << FullyConnectedLayer(
150 4096U,
151 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc7_w.npy"),
152 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc7_b.npy"))
153 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
154 // Layer 8
155 << FullyConnectedLayer(
156 1000U,
157 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc8_w.npy"),
158 get_weights_accessor(data_path, "/cnn_data/alexnet_model/fc8_b.npy"))
159 // Softmax
160 << SoftmaxLayer()
161 << Tensor(get_output_accessor(label, 5));
Gian Marcoc1b6e372018-02-21 18:03:26 +0000162
163 // In order to enable the OpenCL tuner, graph_init() has to be called only when all nodes have been instantiated
164 graph.graph_init(int_target_hint == 2);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100165 }
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000166 void do_run() override
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100167 {
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000168 // Run graph
169 graph.run();
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100170 }
171
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000172private:
173 Graph graph{};
174};
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100175
176/** Main program for AlexNet
177 *
178 * @param[in] argc Number of arguments
Gian Marcobfa3b522017-12-12 10:08:38 +0000179 * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL), [optional] Path to the weights folder, [optional] image, [optional] labels )
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100180 */
Anthony Barbier6db0ff52018-01-05 10:59:12 +0000181int main(int argc, char **argv)
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100182{
Michalis Spyrou2b5f0f22018-01-10 14:08:50 +0000183 return arm_compute::utils::run_example<GraphAlexnetExample>(argc, argv);
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100184}