blob: c2a465604a79e2e867d88084862e9ccb21d4be1b [file] [log] [blame]
SiCong Li240b79d2019-09-24 15:50:34 +01001/*
Gian Marco Iodiceca419dd2021-03-03 17:25:07 +00002 * Copyright (c) 2019-2021 Arm Limited.
SiCong Li240b79d2019-09-24 15:50:34 +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 "CommonGemmExampleOptions.h"
25
26namespace gemm_tuner
27{
28using namespace arm_compute;
29using namespace utils;
30
31::std::ostream &operator<<(::std::ostream &os, const CommonGemmExampleParams &common_params)
32{
33 os << "M : " << common_params.M << std::endl;
34 os << "N : " << common_params.N << std::endl;
35 os << "K : " << common_params.K << std::endl;
36 os << "B : " << common_params.B << std::endl;
Eren Kopuz350099e2020-06-09 15:37:43 +010037 os << "Data type : " << common_params.data_type << std::endl;
Gian Marco Iodiceca419dd2021-03-03 17:25:07 +000038 os << "OpenCL tuner mode : " << common_params.tuner_mode << std::endl;
SiCong Li240b79d2019-09-24 15:50:34 +010039 return os;
40}
41
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010042CommonGemmExampleOptions::CommonGemmExampleOptions(arm_compute::utils::CommandLineParser &parser,
43 arm_compute::DataType default_data_type)
SiCong Li240b79d2019-09-24 15:50:34 +010044 : help(parser.add_option<ToggleOption>("help")),
45 M(parser.add_positional_option<SimpleOption<size_t>>("M", 100)),
46 N(parser.add_positional_option<SimpleOption<size_t>>("N", 100)),
47 K(parser.add_positional_option<SimpleOption<size_t>>("K", 50)),
Eren Kopuz350099e2020-06-09 15:37:43 +010048 B(parser.add_positional_option<SimpleOption<size_t>>("B", 1)),
Gian Marco Iodiceca419dd2021-03-03 17:25:07 +000049 data_type(),
50 tuner_mode()
SiCong Li240b79d2019-09-24 15:50:34 +010051{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010052 const std::set<DataType> supported_data_types{
Eren Kopuz350099e2020-06-09 15:37:43 +010053 DataType::F16,
54 DataType::F32,
SiCongLi282f3242020-11-24 15:24:16 +000055 DataType::QASYMM8,
Eren Kopuz350099e2020-06-09 15:37:43 +010056 };
Gian Marco Iodiceca419dd2021-03-03 17:25:07 +000057
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010058 const std::set<CLTunerMode> supported_tuner_modes{CLTunerMode::EXHAUSTIVE, CLTunerMode::NORMAL, CLTunerMode::RAPID};
Gian Marco Iodiceca419dd2021-03-03 17:25:07 +000059
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010060 ARM_COMPUTE_ERROR_ON_MSG(supported_data_types.find(default_data_type) == supported_data_types.end(),
61 "Default data type unsupported");
Eren Kopuz350099e2020-06-09 15:37:43 +010062
Gian Marco Iodiceca419dd2021-03-03 17:25:07 +000063 data_type = parser.add_option<EnumOption<DataType>>("type", supported_data_types, default_data_type);
64 tuner_mode = parser.add_option<EnumOption<CLTunerMode>>("tuner-mode", supported_tuner_modes, CLTunerMode::RAPID);
Eren Kopuz350099e2020-06-09 15:37:43 +010065
SiCong Li240b79d2019-09-24 15:50:34 +010066 help->set_help("Show this help message.");
67 M->set_help("Number of lhs matrix rows.");
68 N->set_help("Number of rhs matrix columns.");
69 K->set_help("Number of lhs matrix columns/rhs matrix rows.");
70 B->set_help("Batch size.");
Eren Kopuz350099e2020-06-09 15:37:43 +010071 data_type->set_help("Data type to use");
Gian Marco Iodiceca419dd2021-03-03 17:25:07 +000072 tuner_mode->set_help("OpenCL tuner mode");
SiCong Li240b79d2019-09-24 15:50:34 +010073}
74
75CommonGemmExampleParams consume_common_gemm_example_parameters(const CommonGemmExampleOptions &options)
76{
77 CommonGemmExampleParams common_params;
Gian Marco Iodiceca419dd2021-03-03 17:25:07 +000078 common_params.M = options.M->value();
79 common_params.N = options.N->value();
80 common_params.K = options.K->value();
81 common_params.B = options.B->value();
82 common_params.data_type = options.data_type->value();
83 common_params.tuner_mode = options.tuner_mode->value();
SiCong Li240b79d2019-09-24 15:50:34 +010084 return common_params;
85}
86} // namespace gemm_tuner