• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2019-2020 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_EXAMPLES_GEMM_TUNER_COMMON_GEMM_EXAMPLE_OPTIONS
25 #define ARM_COMPUTE_EXAMPLES_GEMM_TUNER_COMMON_GEMM_EXAMPLE_OPTIONS
26 
27 #include "arm_compute/core/Types.h"
28 #include "arm_compute/core/Utils.h"
29 #include "utils/TypePrinter.h"
30 #include "utils/command_line/CommandLineOptions.h"
31 #include "utils/command_line/CommandLineParser.h"
32 
33 namespace gemm_tuner
34 {
35 /** Structure holding all the common gemm example parameters */
36 struct CommonGemmExampleParams
37 {
38     size_t                M{ 100 };                                /**< Number of lhs matrix rows */
39     size_t                N{ 100 };                                /**< Number of rhs matrix columns */
40     size_t                K{ 50 };                                 /**< Number of lhs matrix columns/rhs matrix rows */
41     size_t                B{ 1 };                                  /**< Batch size */
42     arm_compute::DataType data_type{ arm_compute::DataType::F32 }; /**< Data type */
43 };
44 
45 /** Formatted output of the CommonGemmExampleParams type
46  *
47  * @param[out] os            Output stream.
48  * @param[in]  common_params Common parameters to output
49  *
50  * @return Modified output stream.
51  */
52 ::std::ostream &operator<<(::std::ostream &os, const CommonGemmExampleParams &common_params);
53 
54 /** Common command line options used to configure the gemm examples
55  *
56  * The options in this object get populated when "parse()" is called on the parser used to construct it.
57  * The expected workflow is:
58  *
59  * CommandLineParser parser;
60  * CommonOptions options( parser );
61  * parser.parse(argc, argv);
62  */
63 class CommonGemmExampleOptions
64 {
65 public:
66     /** Constructor
67      *
68      * @param[in,out] parser A parser on which "parse()" hasn't been called yet.
69      */
70     CommonGemmExampleOptions(arm_compute::utils::CommandLineParser &parser);
71     /** Prevent instances of this class from being copied (As this class contains pointers) */
72     CommonGemmExampleOptions(const CommonGemmExampleOptions &) = delete;
73     /** Prevent instances of this class from being copied (As this class contains pointers) */
74     CommonGemmExampleOptions &operator=(const CommonGemmExampleOptions &) = delete;
75     /** Allow instances of this class to be moved */
76     CommonGemmExampleOptions(CommonGemmExampleOptions &&) = default;
77     /** Allow instances of this class to be moved */
78     CommonGemmExampleOptions &operator=(CommonGemmExampleOptions &&) = default;
79     /** Default destructor */
80     ~CommonGemmExampleOptions() = default;
81 
82     arm_compute::utils::ToggleOption                      *help;      /**< Show help option */
83     arm_compute::utils::SimpleOption<size_t>              *M;         /**< Number of lhs matrix rows option */
84     arm_compute::utils::SimpleOption<size_t>              *N;         /**< Number of rhs matrix columns option */
85     arm_compute::utils::SimpleOption<size_t>              *K;         /**< Number of lhs matrix columns/rhs matrix rows option */
86     arm_compute::utils::SimpleOption<size_t>              *B;         /**< Batch size option */
87     arm_compute::utils::EnumOption<arm_compute::DataType> *data_type; /**< Data type */
88 };
89 
90 /** Consumes the common gemm example options and creates a structure containing all information
91  *
92  * @param[in] options Options to consume
93  *
94  * @return Structure containing the common gemm example parameters
95  */
96 CommonGemmExampleParams consume_common_gemm_example_parameters(const CommonGemmExampleOptions &options);
97 } // namespace gemm_tuner
98 #endif /* ARM_COMPUTE_EXAMPLES_GEMM_TUNER_COMMON_GEMM_EXAMPLE_OPTIONS */
99