OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef GPU_PERFTESTS_MEASUREMENTS_H_ | 5 #ifndef GPU_PERFTESTS_MEASUREMENTS_H_ |
6 #define GPU_PERFTESTS_MEASUREMENTS_H_ | 6 #define GPU_PERFTESTS_MEASUREMENTS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
12 | 12 |
13 namespace gpu { | 13 namespace gpu { |
14 class GPUTiming; | 14 class GPUTimingClient; |
15 class GPUTimer; | 15 class GPUTimer; |
16 struct Measurement { | 16 struct Measurement { |
17 Measurement(); | 17 Measurement(); |
18 Measurement(const Measurement& m); | 18 Measurement(const Measurement& m); |
19 Measurement(const std::string& name, | 19 Measurement(const std::string& name, |
20 const base::TimeDelta wall_time, | 20 const base::TimeDelta wall_time, |
21 const base::TimeDelta cpu_time, | 21 const base::TimeDelta cpu_time, |
22 const base::TimeDelta gpu_time); | 22 const base::TimeDelta gpu_time); |
23 ~Measurement(); | 23 ~Measurement(); |
24 | 24 |
25 void PrintResult() const; | 25 void PrintResult() const; |
26 Measurement& Increment(const Measurement& m); | 26 Measurement& Increment(const Measurement& m); |
27 Measurement Divide(int a) const; | 27 Measurement Divide(int a) const; |
28 | 28 |
29 std::string name; | 29 std::string name; |
30 base::TimeDelta wall_time; | 30 base::TimeDelta wall_time; |
31 base::TimeDelta cpu_time; | 31 base::TimeDelta cpu_time; |
32 base::TimeDelta gpu_time; | 32 base::TimeDelta gpu_time; |
33 }; | 33 }; |
34 | 34 |
35 // Class to measure wall, cpu and gpu time deltas. | 35 // Class to measure wall, cpu and gpu time deltas. |
36 // The deltas are measured from the time of the object | 36 // The deltas are measured from the time of the object |
37 // creation up to when Record is called. | 37 // creation up to when Record is called. |
38 class MeasurementTimers { | 38 class MeasurementTimers { |
39 public: | 39 public: |
40 explicit MeasurementTimers(GPUTiming* gpu_timing); | 40 explicit MeasurementTimers(GPUTimingClient* gpu_timing_client); |
41 void Record(); | 41 void Record(); |
42 Measurement GetAsMeasurement(const std::string& name); | 42 Measurement GetAsMeasurement(const std::string& name); |
43 ~MeasurementTimers(); | 43 ~MeasurementTimers(); |
44 | 44 |
45 private: | 45 private: |
46 base::TimeTicks wall_time_start_; | 46 base::TimeTicks wall_time_start_; |
47 base::TimeTicks cpu_time_start_; | 47 base::TimeTicks cpu_time_start_; |
48 scoped_ptr<gpu::GPUTimer> gpu_timer_; | 48 scoped_ptr<gpu::GPUTimer> gpu_timer_; |
49 | 49 |
50 base::TimeDelta wall_time_; | 50 base::TimeDelta wall_time_; |
51 base::TimeDelta cpu_time_; | 51 base::TimeDelta cpu_time_; |
52 }; | 52 }; |
53 | 53 |
54 } // namespace gpu | 54 } // namespace gpu |
55 | 55 |
56 #endif // GPU_PERFTESTS_MEASUREMENTS_H_ | 56 #endif // GPU_PERFTESTS_MEASUREMENTS_H_ |
OLD | NEW |