blob: 0719b1086426903daaa42395cd015584992306f1 [file] [log] [blame]
Moritz Pflanzera4f711b2017-07-05 11:02:23 +01001/*
Alex Gildayc357c472018-03-21 13:54:09 +00002 * Copyright (c) 2017-2018 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_PMU_COUNTER
25#define ARM_COMPUTE_TEST_PMU_COUNTER
26
27#include "Instrument.h"
Moritz Pflanzer09e4f982017-08-30 12:47:06 +010028#include "PMU.h"
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010029
30namespace arm_compute
31{
32namespace test
33{
34namespace framework
35{
36/** Implementation of an instrument to count CPU cycles. */
Moritz Pflanzer09e4f982017-08-30 12:47:06 +010037class PMUCounter : public Instrument
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010038{
39public:
Alex Gildayc357c472018-03-21 13:54:09 +000040 /** Construct a PMU counter.
41 *
42 * @param[in] scale_factor Measurement scale factor.
43 */
Giorgio Arenace58a9f2017-10-31 17:59:17 +000044 PMUCounter(ScaleFactor scale_factor)
45 {
46 switch(scale_factor)
47 {
48 case ScaleFactor::NONE:
49 _scale_factor = 1;
50 _unit = "";
51 break;
52 case ScaleFactor::SCALE_1K:
53 _scale_factor = 1000;
54 _unit = "K ";
55 break;
56 case ScaleFactor::SCALE_1M:
57 _scale_factor = 1000000;
58 _unit = "M ";
59 break;
60 default:
61 ARM_COMPUTE_ERROR("Invalid scale");
62 }
63 };
64
Moritz Pflanzer09e4f982017-08-30 12:47:06 +010065 std::string id() const override;
66 void start() override;
67 void stop() override;
68 MeasurementsMap measurements() const override;
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010069
70private:
Moritz Pflanzer09e4f982017-08-30 12:47:06 +010071 PMU _pmu_cycles{ PERF_COUNT_HW_CPU_CYCLES };
72 PMU _pmu_instructions{ PERF_COUNT_HW_INSTRUCTIONS };
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010073 long long _cycles{ 0 };
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010074 long long _instructions{ 0 };
Giorgio Arenace58a9f2017-10-31 17:59:17 +000075 int _scale_factor{};
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010076};
77} // namespace framework
78} // namespace test
79} // namespace arm_compute
80#endif /* ARM_COMPUTE_TEST_PMU_COUNTER */