blob: 53b32d9ab4008af1c811aeb7c31e46487009e165 [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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#ifndef ARM_COMPUTE_CL /* Needed by Utils.cpp to handle OpenCL exceptions properly */
25#error "This example needs to be built with -DARM_COMPUTE_CL"
26#endif /* ARM_COMPUTE_CL */
27
28#include "arm_compute/graph/Graph.h"
29#include "arm_compute/graph/Nodes.h"
30#include "arm_compute/runtime/CL/CLScheduler.h"
31#include "arm_compute/runtime/Scheduler.h"
32#include "support/ToolchainSupport.h"
33#include "utils/GraphUtils.h"
34#include "utils/Utils.h"
35
36#include <cstdlib>
37#include <iostream>
38#include <memory>
39
40using namespace arm_compute::graph;
41using namespace arm_compute::graph_utils;
Georgios Pinitas7d3d1b92017-10-12 17:34:20 +010042using namespace arm_compute::logging;
Anthony Barbier2a07e182017-08-04 18:20:27 +010043
44/** Generates appropriate accessor according to the specified path
45 *
46 * @note If path is empty will generate a DummyAccessor else will generate a NumPyBinLoader
47 *
48 * @param path Path to the data files
49 * @param data_file Relative path to the data files from path
50 *
51 * @return An appropriate tensor accessor
52 */
53std::unique_ptr<ITensorAccessor> get_accessor(const std::string &path, const std::string &data_file)
54{
55 if(path.empty())
56 {
57 return arm_compute::support::cpp14::make_unique<DummyAccessor>();
58 }
59 else
60 {
61 return arm_compute::support::cpp14::make_unique<NumPyBinLoader>(path + data_file);
62 }
63}
64
65/** Example demonstrating how to implement LeNet's network using the Compute Library's graph API
66 *
67 * @param[in] argc Number of arguments
68 * @param[in] argv Arguments ( [optional] Path to the weights folder, [optional] batches )
69 */
70void main_graph_lenet(int argc, const char **argv)
71{
72 std::string data_path; /** Path to the trainable data */
73 unsigned int batches = 4; /** Number of batches */
74
75 // Parse arguments
76 if(argc < 2)
77 {
78 // Print help
79 std::cout << "Usage: " << argv[0] << " [path_to_data] [batches]\n\n";
80 std::cout << "No data folder provided: using random values\n\n";
81 }
82 else if(argc == 2)
83 {
84 //Do something with argv[1]
85 data_path = argv[1];
86 std::cout << "Usage: " << argv[0] << " [path_to_data] [batches]\n\n";
87 std::cout << "No number of batches where specified, thus will use the default : " << batches << "\n\n";
88 }
89 else
90 {
91 //Do something with argv[1] and argv[2]
92 data_path = argv[1];
93 batches = std::strtol(argv[2], nullptr, 0);
94 }
95
96 // Check if OpenCL is available and initialize the scheduler
Georgios Pinitasff421f22017-10-04 16:53:58 +010097 TargetHint hint = TargetHint::NEON;
Anthony Barbier2a07e182017-08-04 18:20:27 +010098 if(arm_compute::opencl_is_available())
99 {
100 arm_compute::CLScheduler::get().default_init();
Georgios Pinitasff421f22017-10-04 16:53:58 +0100101 hint = TargetHint::OPENCL;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100102 }
103
104 Graph graph;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100105
106 //conv1 << pool1 << conv2 << pool2 << fc1 << act1 << fc2 << smx
Gian Marco Iodice1914db72017-09-29 12:05:49 +0100107 graph << hint
Anthony Barbier2a07e182017-08-04 18:20:27 +0100108 << Tensor(TensorInfo(TensorShape(28U, 28U, 1U, batches), 1, DataType::F32), DummyAccessor())
109 << ConvolutionLayer(
110 5U, 5U, 20U,
111 get_accessor(data_path, "/cnn_data/lenet_model/conv1_w.npy"),
112 get_accessor(data_path, "/cnn_data/lenet_model/conv1_b.npy"),
113 PadStrideInfo(1, 1, 0, 0))
114 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0)))
115 << ConvolutionLayer(
116 5U, 5U, 50U,
117 get_accessor(data_path, "/cnn_data/lenet_model/conv2_w.npy"),
118 get_accessor(data_path, "/cnn_data/lenet_model/conv2_b.npy"),
119 PadStrideInfo(1, 1, 0, 0))
120 << PoolingLayer(PoolingLayerInfo(PoolingType::MAX, 2, PadStrideInfo(2, 2, 0, 0)))
121 << FullyConnectedLayer(
122 500U,
123 get_accessor(data_path, "/cnn_data/lenet_model/ip1_w.npy"),
124 get_accessor(data_path, "/cnn_data/lenet_model/ip1_b.npy"))
Anthony Barbier2a07e182017-08-04 18:20:27 +0100125 << ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU))
126 << FullyConnectedLayer(
127 10U,
128 get_accessor(data_path, "/cnn_data/lenet_model/ip2_w.npy"),
129 get_accessor(data_path, "/cnn_data/lenet_model/ip2_b.npy"))
130 << SoftmaxLayer()
131 << Tensor(DummyAccessor());
132
133 graph.run();
134}
135
136/** Main program for LeNet
137 *
138 * @param[in] argc Number of arguments
139 * @param[in] argv Arguments ( [optional] Path to the weights folder, [optional] batches )
140 */
141int main(int argc, const char **argv)
142{
143 return arm_compute::utils::run_example(argc, argv, main_graph_lenet);
144}