blob: 7f7ffbdb93cfb35af2286712c2cce3b8e73bc5f5 [file] [log] [blame]
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import '../benchmark.dart';
import '../generated/benchmark.pb.dart'
show BenchmarkID, Params, Request, Sample;
import '../generated/int32grid.pb.dart' as pb;
/// A benchmark that deserializes a grid of repeated ints.
class RepeatedInt32Benchmark extends Benchmark {
final int width;
final int height;
late String json;
RepeatedInt32Benchmark(this.width, this.height) : super($id);
@override
String get summary => '${id.name}($width x $height ints)';
@override
Params makeParams() => Params()
..int32RepeatCount = width
..messageCount = height;
@override
void setup() {
final grid = _makeGrid(width, height);
json = grid.writeToJson();
}
// makes a rectangle of the of the form:
// 0 1 2 3
// 1 2 3 4
// 2 3 4 5
static pb.Grid _makeGrid(int width, int height) {
final grid = pb.Grid();
for (var y = 0; y < height; y++) {
final line = pb.Line();
for (var x = 0; x < width; x++) {
line.cells.add(x + y);
}
grid.lines.add(line);
}
return grid;
}
@override
void run() {
final grid = pb.Grid.fromJson(json);
final actual = grid.lines[height - 1].cells[width - 1];
if (actual != width + height - 2) throw 'failed; got $actual';
}
@override
void setCounts(Sample m) {
m.counts.int32Reads = width * height * m.loopCount;
}
@override
double measureSample(Sample? s) => int32ReadsPerMillisecond(s);
@override
String get measureSampleUnits => 'int32 reads/ms';
static const $id = BenchmarkID.READ_INT32_REPEATED_JSON;
static final $type = BenchmarkType($id, $create);
static RepeatedInt32Benchmark $create(Request r) {
assert(r.params.hasInt32RepeatCount());
assert(r.params.hasMessageCount());
return RepeatedInt32Benchmark(
r.params.int32RepeatCount, r.params.messageCount);
}
}