Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: bench/TimerData.h

Issue 286903025: PictureBenchmark JSON logging (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: More style fixes Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bench/ResultsWriter.cpp ('k') | bench/TimerData.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef TimerData_DEFINED 9 #ifndef TimerData_DEFINED
10 #define TimerData_DEFINED 10 #define TimerData_DEFINED
11 11
12 #include "SkJSONCPP.h"
12 #include "SkString.h" 13 #include "SkString.h"
13 #include "SkTemplates.h" 14 #include "SkTemplates.h"
14 15
15 16
16 class BenchTimer; 17 class BenchTimer;
17 18
18 class TimerData { 19 class TimerData {
19 public: 20 public:
20 /** 21 /**
21 * Constructs a TimerData to hold at most maxNumTimings sets of elapsed time r values. 22 * Constructs a TimerData to hold at most maxNumTimings sets of elapsed time r values.
(...skipping 29 matching lines...) Expand all
51 * @param the name of the config being timed (prepended to results string) 52 * @param the name of the config being timed (prepended to results string)
52 * @param timerFlags bitfield of TimerFlags values indicating which timers s hould be reported. 53 * @param timerFlags bitfield of TimerFlags values indicating which timers s hould be reported.
53 * @param itersPerTiming the number of test/bench iterations that correspond to each 54 * @param itersPerTiming the number of test/bench iterations that correspond to each
54 * appendTimes() call, 1 when appendTimes is called for each iteratio n. 55 * appendTimes() call, 1 when appendTimes is called for each iteratio n.
55 */ 56 */
56 SkString getResult(const char* doubleFormat, 57 SkString getResult(const char* doubleFormat,
57 Result result, 58 Result result,
58 const char* configName, 59 const char* configName,
59 uint32_t timerFlags, 60 uint32_t timerFlags,
60 int itersPerTiming = 1); 61 int itersPerTiming = 1);
62 Json::Value getJSON(uint32_t timerFlags,
63 Result result,
64 int itersPerTiming = 1);
61 65
62 private: 66 private:
63 int fMaxNumTimings; 67 int fMaxNumTimings;
64 int fCurrTiming; 68 int fCurrTiming;
65 69
66 SkAutoTArray<double> fWallTimes; 70 SkAutoTArray<double> fWallTimes;
67 SkAutoTArray<double> fTruncatedWallTimes; 71 SkAutoTArray<double> fTruncatedWallTimes;
68 SkAutoTArray<double> fCpuTimes; 72 SkAutoTArray<double> fCpuTimes;
69 SkAutoTArray<double> fTruncatedCpuTimes; 73 SkAutoTArray<double> fTruncatedCpuTimes;
70 SkAutoTArray<double> fGpuTimes; 74 SkAutoTArray<double> fGpuTimes;
71 }; 75 };
72 76
73 #endif // TimerData_DEFINED 77 #endif // TimerData_DEFINED
OLDNEW
« no previous file with comments | « bench/ResultsWriter.cpp ('k') | bench/TimerData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698