blob: 301ca2fc1b41a4afe3d5aca4badba667cf720ec4 [file] [log] [blame]
Moritz Pflanzera4f711b2017-07-05 11:02:23 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2017-2020 ARM Limited.
Moritz Pflanzera4f711b2017-07-05 11:02: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#ifndef ARM_COMPUTE_TEST_INSTRUMENT
25#define ARM_COMPUTE_TEST_INSTRUMENT
26
Matthew Bentham758b5ba2020-03-05 23:37:48 +000027#include "support/MemorySupport.h"
28
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010029#include "../Utils.h"
Moritz Pflanzer09e4f982017-08-30 12:47:06 +010030#include "Measurement.h"
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010031
Moritz Pflanzer09e4f982017-08-30 12:47:06 +010032#include <map>
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010033#include <memory>
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010034#include <string>
35
36namespace arm_compute
37{
38namespace test
39{
40namespace framework
41{
Giorgio Arenace58a9f2017-10-31 17:59:17 +000042enum class ScaleFactor : unsigned int
43{
44 NONE, /* Default scale */
45 SCALE_1K, /* 1000 */
46 SCALE_1M, /* 1 000 000 */
47 TIME_US, /* Microseconds */
48 TIME_MS, /* Milliseconds */
49 TIME_S, /* Seconds */
50};
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010051/** Interface for classes that can be used to measure performance. */
52class Instrument
53{
54public:
55 /** Helper function to create an instrument of the given type.
56 *
57 * @return Instance of an instrument of the given type.
58 */
Giorgio Arenace58a9f2017-10-31 17:59:17 +000059 template <typename T, ScaleFactor scale>
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010060 static std::unique_ptr<Instrument> make_instrument();
61
Alex Gildayc357c472018-03-21 13:54:09 +000062 /** Default constructor. */
Giorgio Arenace58a9f2017-10-31 17:59:17 +000063 Instrument() = default;
64
Alex Gildayc357c472018-03-21 13:54:09 +000065 /** Allow instances of this class to be copy constructed */
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010066 Instrument(const Instrument &) = default;
Alex Gildayc357c472018-03-21 13:54:09 +000067 /** Allow instances of this class to be move constructed */
68 Instrument(Instrument &&) = default;
69 /** Allow instances of this class to be copied */
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010070 Instrument &operator=(const Instrument &) = default;
Alex Gildayc357c472018-03-21 13:54:09 +000071 /** Allow instances of this class to be moved */
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010072 Instrument &operator=(Instrument &&) = default;
Alex Gildayc357c472018-03-21 13:54:09 +000073 /** Default destructor. */
74 virtual ~Instrument() = default;
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010075
76 /** Identifier for the instrument */
77 virtual std::string id() const = 0;
78
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010079 /** Start of the test
80 *
81 * Called before the test set up starts
82 */
83 virtual void test_start()
84 {
85 }
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010086
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010087 /** Start measuring.
88 *
89 * Called just before the run of the test starts
90 */
91 virtual void start()
92 {
93 }
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010094
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010095 /** Stop measuring.
96 *
97 * Called just after the run of the test ends
98 */
99 virtual void stop()
100 {
101 }
102
103 /** End of the test
104 *
105 * Called after the test teardown ended
106 */
107 virtual void test_stop()
108 {
109 }
Alex Gildayc357c472018-03-21 13:54:09 +0000110 /** Map of measurements */
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100111 using MeasurementsMap = std::map<std::string, Measurement>;
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100112
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100113 /** Return the latest measurements.
Alex Gildayc357c472018-03-21 13:54:09 +0000114 *
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100115 * @return the latest measurements.
Alex Gildayc357c472018-03-21 13:54:09 +0000116 */
Anthony Barbier9fb0cac2018-04-20 15:46:21 +0100117 virtual MeasurementsMap measurements() const
118 {
119 return MeasurementsMap();
120 }
121
122 /** Return the latest test measurements.
123 *
124 * @return the latest test measurements.
125 */
126 virtual MeasurementsMap test_measurements() const
127 {
128 return MeasurementsMap();
129 }
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000130
131protected:
132 std::string _unit{};
Moritz Pflanzer09e4f982017-08-30 12:47:06 +0100133};
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100134
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000135template <typename T, ScaleFactor scale>
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100136inline std::unique_ptr<Instrument> Instrument::make_instrument()
137{
Giorgio Arenace58a9f2017-10-31 17:59:17 +0000138 return support::cpp14::make_unique<T>(scale);
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100139}
Anthony Barbierc9afce52018-01-26 16:07:50 +0000140
Moritz Pflanzera4f711b2017-07-05 11:02:23 +0100141} // namespace framework
142} // namespace test
143} // namespace arm_compute
144#endif /* ARM_COMPUTE_TEST_INSTRUMENT */