2013-12-03 18:16:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*
|
|
|
|
* Classes for writing out bench results in various formats.
|
|
|
|
*/
|
2014-06-19 19:32:29 +00:00
|
|
|
|
2013-12-03 18:16:48 +00:00
|
|
|
#ifndef SkResultsWriter_DEFINED
|
|
|
|
#define SkResultsWriter_DEFINED
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkString.h"
|
|
|
|
#include "include/core/SkTypes.h"
|
|
|
|
#include "src/utils/SkJSONWriter.h"
|
2021-06-09 16:59:31 +00:00
|
|
|
#include <cmath>
|
2013-12-03 18:16:48 +00:00
|
|
|
|
|
|
|
/**
|
2019-01-28 19:24:29 +00:00
|
|
|
NanoJSONResultsWriter helps nanobench writes the test results out in the following format:
|
2014-07-17 20:14:16 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
"key": {
|
|
|
|
"arch": "Arm7",
|
|
|
|
"gpu": "SGX540",
|
|
|
|
"os": "Android",
|
|
|
|
"model": "GalaxyNexus",
|
|
|
|
}
|
|
|
|
"gitHash": "d1830323662ae8ae06908b97f15180fd25808894",
|
2014-08-20 18:45:00 +00:00
|
|
|
"build_number": "1234",
|
2014-07-17 20:14:16 +00:00
|
|
|
"results" : {
|
|
|
|
"Xfermode_Luminosity_640_480" : {
|
|
|
|
"8888" : {
|
|
|
|
"median_ms" : 143.188128906250,
|
|
|
|
"min_ms" : 143.835957031250,
|
|
|
|
...
|
|
|
|
},
|
|
|
|
...
|
|
|
|
*/
|
2019-01-28 19:24:29 +00:00
|
|
|
class NanoJSONResultsWriter : public SkJSONWriter {
|
2014-07-17 20:14:16 +00:00
|
|
|
public:
|
2019-01-28 19:24:29 +00:00
|
|
|
NanoJSONResultsWriter(SkWStream* stream, Mode mode) : SkJSONWriter(stream, mode) {}
|
2014-08-20 18:45:00 +00:00
|
|
|
|
2019-01-28 19:24:29 +00:00
|
|
|
void beginBench(const char* name, int32_t x, int32_t y) {
|
|
|
|
SkString id = SkStringPrintf("%s_%d_%d", name, x, y);
|
|
|
|
this->beginObject(id.c_str());
|
2014-07-17 20:14:16 +00:00
|
|
|
}
|
2014-08-20 18:45:00 +00:00
|
|
|
|
2019-01-28 19:24:29 +00:00
|
|
|
void endBench() { this->endObject(); }
|
2014-05-20 17:35:10 +00:00
|
|
|
|
2019-01-28 19:24:29 +00:00
|
|
|
void appendMetric(const char* name, double value) {
|
2021-06-09 16:59:31 +00:00
|
|
|
// Don't record if NaN or Inf.
|
|
|
|
if (std::isfinite(value)) {
|
2019-01-28 19:24:29 +00:00
|
|
|
this->appendDoubleDigits(name, value, 16);
|
2015-08-20 16:12:39 +00:00
|
|
|
}
|
2014-10-14 15:40:43 +00:00
|
|
|
}
|
2013-12-03 18:16:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|