blob: 0e21ac71fb01821dd8fd35f84de300b6cbe0a61f [file] [log] [blame]
Moritz Pflanzera4f711b2017-07-05 11:02:23 +01001/*
Michalis Spyroud1fe4ce2019-02-08 15:26:24 +00002 * Copyright (c) 2017-2019 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#include "WallClockTimer.h"
25
26#include "../Framework.h"
27#include "../Utils.h"
28
29namespace arm_compute
30{
31namespace test
32{
33namespace framework
34{
Anthony Barbier72f4ae52018-11-07 17:33:54 +000035template <bool output_timestamps>
36std::string WallClock<output_timestamps>::id() const
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010037{
Anthony Barbier72f4ae52018-11-07 17:33:54 +000038 if(output_timestamps)
39 {
40 return "Wall clock timestamps";
41 }
42 else
43 {
44 return "Wall clock";
45 }
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010046}
47
Anthony Barbier72f4ae52018-11-07 17:33:54 +000048template <bool output_timestamps>
49void WallClock<output_timestamps>::start()
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010050{
Michalis Spyroud1fe4ce2019-02-08 15:26:24 +000051 _start = std::chrono::system_clock::now();
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010052}
53
Anthony Barbier72f4ae52018-11-07 17:33:54 +000054template <bool output_timestamps>
55void WallClock<output_timestamps>::stop()
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010056{
Michalis Spyroud1fe4ce2019-02-08 15:26:24 +000057 _stop = std::chrono::system_clock::now();
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010058}
59
Anthony Barbier72f4ae52018-11-07 17:33:54 +000060template <bool output_timestamps>
61Instrument::MeasurementsMap WallClock<output_timestamps>::measurements() const
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010062{
Anthony Barbier72f4ae52018-11-07 17:33:54 +000063 MeasurementsMap measurements;
64 if(output_timestamps)
65 {
66 // _start / _stop are in ns, so divide by an extra 1000:
67 measurements.emplace("[start]Wall clock time", Measurement(_start.time_since_epoch().count() / static_cast<uint64_t>(1000 * _scale_factor), _unit));
68 measurements.emplace("[end]Wall clock time", Measurement(_stop.time_since_epoch().count() / static_cast<uint64_t>(1000 * _scale_factor), _unit));
69 }
70 else
71 {
72 const auto delta = std::chrono::duration_cast<std::chrono::microseconds>(_stop - _start);
73 measurements.emplace("Wall clock time", Measurement(delta.count() / _scale_factor, _unit));
74 }
75 return measurements;
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010076}
Anthony Barbier72f4ae52018-11-07 17:33:54 +000077
Moritz Pflanzera4f711b2017-07-05 11:02:23 +010078} // namespace framework
79} // namespace test
80} // namespace arm_compute
Anthony Barbiercc225be2018-11-09 15:35:20 +000081
82template class arm_compute::test::framework::WallClock<true>;
83template class arm_compute::test::framework::WallClock<false>;