blob: bcfb8657534301a10c5dbacf3e5955e6d49ea002 [file] [log] [blame]
Georgios Pinitas12be7ab2018-07-03 12:06:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Georgios Pinitas12be7ab2018-07-03 12:06:23 +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 */
24#include "CommonGraphOptions.h"
25
26#include "arm_compute/graph/TypeLoader.h"
27#include "arm_compute/graph/TypePrinter.h"
28
Matthew Bentham92046462020-03-07 22:15:55 +000029#include "support/StringSupport.h"
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010030
31#include <map>
32
33using namespace arm_compute::graph;
34
35namespace
36{
37std::pair<unsigned int, unsigned int> parse_validation_range(const std::string &validation_range)
38{
39 std::pair<unsigned int /* start */, unsigned int /* end */> range = { 0, std::numeric_limits<unsigned int>::max() };
40 if(!validation_range.empty())
41 {
42 std::string str;
43 std::stringstream stream(validation_range);
44
45 // Get first value
46 std::getline(stream, str, ',');
47 if(stream.fail())
48 {
49 return range;
50 }
51 else
52 {
53 range.first = arm_compute::support::cpp11::stoi(str);
54 }
55
56 // Get second value
57 std::getline(stream, str);
58 if(stream.fail())
59 {
60 range.second = range.first;
61 return range;
62 }
63 else
64 {
65 range.second = arm_compute::support::cpp11::stoi(str);
66 }
67 }
68 return range;
69}
70} // namespace
71
72namespace arm_compute
73{
74namespace utils
75{
76::std::ostream &operator<<(::std::ostream &os, const CommonGraphParams &common_params)
77{
78 std::string false_str = std::string("false");
79 std::string true_str = std::string("true");
80
81 os << "Threads : " << common_params.threads << std::endl;
82 os << "Target : " << common_params.target << std::endl;
83 os << "Data type : " << common_params.data_type << std::endl;
84 os << "Data layout : " << common_params.data_layout << std::endl;
85 os << "Tuner enabled? : " << (common_params.enable_tuner ? true_str : false_str) << std::endl;
Pablo Tellodb9116f2019-07-11 16:50:37 +010086 os << "Cache enabled? : " << (common_params.enable_cl_cache ? true_str : false_str) << std::endl;
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010087 os << "Tuner mode : " << common_params.tuner_mode << std::endl;
Anthony Barbier7b607dc2018-07-13 15:55:24 +010088 os << "Tuner file : " << common_params.tuner_file << std::endl;
Georgios Pinitase2220552018-07-20 13:23:44 +010089 os << "Fast math enabled? : " << (common_params.fast_math_hint == FastMathHint::Enabled ? true_str : false_str) << std::endl;
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010090 if(!common_params.data_path.empty())
91 {
92 os << "Data path : " << common_params.data_path << std::endl;
93 }
94 if(!common_params.image.empty())
95 {
96 os << "Image file : " << common_params.image << std::endl;
97 }
98 if(!common_params.labels.empty())
99 {
100 os << "Labels file : " << common_params.labels << std::endl;
101 }
102 if(!common_params.validation_file.empty())
103 {
104 os << "Validation range : " << common_params.validation_range_start << "-" << common_params.validation_range_end << std::endl;
105 os << "Validation file : " << common_params.validation_file << std::endl;
106 if(!common_params.validation_path.empty())
107 {
108 os << "Validation path : " << common_params.validation_path << std::endl;
109 }
110 }
111
112 return os;
113}
114
115CommonGraphOptions::CommonGraphOptions(CommandLineParser &parser)
116 : help(parser.add_option<ToggleOption>("help")),
117 threads(parser.add_option<SimpleOption<int>>("threads", 1)),
118 target(),
119 data_type(),
120 data_layout(),
121 enable_tuner(parser.add_option<ToggleOption>("enable-tuner")),
Pablo Tellodb9116f2019-07-11 16:50:37 +0100122 enable_cl_cache(parser.add_option<ToggleOption>("enable-cl-cache")),
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100123 tuner_mode(),
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100124 fast_math_hint(parser.add_option<ToggleOption>("fast-math")),
125 data_path(parser.add_option<SimpleOption<std::string>>("data")),
126 image(parser.add_option<SimpleOption<std::string>>("image")),
127 labels(parser.add_option<SimpleOption<std::string>>("labels")),
128 validation_file(parser.add_option<SimpleOption<std::string>>("validation-file")),
129 validation_path(parser.add_option<SimpleOption<std::string>>("validation-path")),
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100130 validation_range(parser.add_option<SimpleOption<std::string>>("validation-range")),
131 tuner_file(parser.add_option<SimpleOption<std::string>>("tuner-file"))
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100132{
133 std::set<arm_compute::graph::Target> supported_targets
134 {
135 Target::NEON,
136 Target::CL,
137 Target::GC,
138 };
139
140 std::set<arm_compute::DataType> supported_data_types
141 {
142 DataType::F16,
143 DataType::F32,
144 DataType::QASYMM8,
145 };
146
147 std::set<DataLayout> supported_data_layouts
148 {
149 DataLayout::NHWC,
150 DataLayout::NCHW,
151 };
152
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100153 const std::set<CLTunerMode> supported_tuner_modes
154 {
155 CLTunerMode::EXHAUSTIVE,
156 CLTunerMode::NORMAL,
157 CLTunerMode::RAPID
158 };
159
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100160 target = parser.add_option<EnumOption<Target>>("target", supported_targets, Target::NEON);
161 data_type = parser.add_option<EnumOption<DataType>>("type", supported_data_types, DataType::F32);
Georgios Pinitas415a2bf2018-07-30 12:05:25 +0100162 data_layout = parser.add_option<EnumOption<DataLayout>>("layout", supported_data_layouts);
Michalis Spyrou083a0692019-05-13 15:35:50 +0100163 tuner_mode = parser.add_option<EnumOption<CLTunerMode>>("tuner-mode", supported_tuner_modes, CLTunerMode::NORMAL);
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100164
165 help->set_help("Show this help message");
166 threads->set_help("Number of threads to use");
167 target->set_help("Target to execute on");
168 data_type->set_help("Data type to use");
169 data_layout->set_help("Data layout to use");
Anthony Barbier943a40b2018-07-12 18:03:54 +0100170 enable_tuner->set_help("Enable OpenCL dynamic tuner");
Pablo Tellodb9116f2019-07-11 16:50:37 +0100171 enable_cl_cache->set_help("Enable OpenCL program caches");
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100172 tuner_mode->set_help("Configures the time taken by the tuner to tune. Slow tuner produces the most performant LWS configuration");
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100173 fast_math_hint->set_help("Enable fast math");
174 data_path->set_help("Path where graph parameters reside");
175 image->set_help("Input image for the graph");
176 labels->set_help("File containing the output labels");
177 validation_file->set_help("File used to validate the graph");
178 validation_path->set_help("Path to the validation data");
179 validation_range->set_help("Range of the images to validate for (Format : start,end)");
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100180 tuner_file->set_help("File to load/save CLTuner values");
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100181}
182
183CommonGraphParams consume_common_graph_parameters(CommonGraphOptions &options)
184{
Georgios Pinitase2220552018-07-20 13:23:44 +0100185 FastMathHint fast_math_hint_value = options.fast_math_hint->value() ? FastMathHint::Enabled : FastMathHint::Disabled;
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100186 auto validation_range = parse_validation_range(options.validation_range->value());
187
188 CommonGraphParams common_params;
Georgios Pinitas415a2bf2018-07-30 12:05:25 +0100189 common_params.help = options.help->is_set() ? options.help->value() : false;
190 common_params.threads = options.threads->value();
191 common_params.target = options.target->value();
192 common_params.data_type = options.data_type->value();
193 if(options.data_layout->is_set())
194 {
195 common_params.data_layout = options.data_layout->value();
196 }
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100197 common_params.enable_tuner = options.enable_tuner->is_set() ? options.enable_tuner->value() : false;
Pablo Tellodb9116f2019-07-11 16:50:37 +0100198 common_params.enable_cl_cache = common_params.target == arm_compute::graph::Target::CL ? (options.enable_cl_cache->is_set() ? options.enable_cl_cache->value() : true) : false;
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +0100199 common_params.tuner_mode = options.tuner_mode->value();
Georgios Pinitase2220552018-07-20 13:23:44 +0100200 common_params.fast_math_hint = options.fast_math_hint->is_set() ? fast_math_hint_value : FastMathHint::Disabled;
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100201 common_params.data_path = options.data_path->value();
202 common_params.image = options.image->value();
203 common_params.labels = options.labels->value();
204 common_params.validation_file = options.validation_file->value();
205 common_params.validation_path = options.validation_path->value();
206 common_params.validation_range_start = validation_range.first;
207 common_params.validation_range_end = validation_range.second;
Anthony Barbier7b607dc2018-07-13 15:55:24 +0100208 common_params.tuner_file = options.tuner_file->value();
Georgios Pinitas12be7ab2018-07-03 12:06:23 +0100209
210 return common_params;
211}
212} // namespace utils
213} // namespace arm_compute