diff options
author | mtklein <mtklein@chromium.org> | 2015-06-16 10:41:27 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-16 10:41:27 -0700 |
commit | bf9e60006987f23773b1e0bdfad9d424d4bc5170 (patch) | |
tree | b92f16bcf0f85ee897062b869592592955fe60df /tools | |
parent | c3176aa5e578cc64a2534a9ddac2fec5ab6d8d77 (diff) |
nanobench: split CPU and GPU .SKP tile sizes.
Let's make CPU-bound .SKP benching mimic Chrome's tiles.
Unfortunately, the CPU code also performs a lot better with those big wide tiles...
BUG=skia:
Review URL: https://codereview.chromium.org/1189863002
Diffstat (limited to 'tools')
-rw-r--r-- | tools/nanobench_flags.json | 26 | ||||
-rwxr-xr-x | tools/nanobench_flags.py | 4 |
2 files changed, 26 insertions, 4 deletions
diff --git a/tools/nanobench_flags.json b/tools/nanobench_flags.json index e90f21741c..90002a8a0b 100644 --- a/tools/nanobench_flags.json +++ b/tools/nanobench_flags.json @@ -63,12 +63,34 @@ "hwui", "msaa16", "nvprmsaa16", - "--benchTileW", + "--GPUbenchTileW", "256", - "--benchTileH", + "--GPUbenchTileH", "256", "--match", "~gradient", "~etc1bitmap" + ], + "Test-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug": [ + "--scales", + "1.0", + "1.1", + "--skps", + "ignore_skps", + "--config", + "565", + "8888", + "gpu", + "nonrendering", + "angle", + "hwui", + "msaa16", + "nvprmsaa16", + "--match", + "~blurroundrect", + "~patch_grid", + "~desk_carsvg", + "~keymobi", + "~path_hairline" ] }
\ No newline at end of file diff --git a/tools/nanobench_flags.py b/tools/nanobench_flags.py index 6be492422d..9283683cb3 100755 --- a/tools/nanobench_flags.py +++ b/tools/nanobench_flags.py @@ -52,8 +52,8 @@ def get_args(bot): args.extend(['--samples', '1']) if 'HD2000' in bot: - args.extend(['--benchTileW', '256']) - args.extend(['--benchTileH', '256']) + args.extend(['--GPUbenchTileW', '256']) + args.extend(['--GPUbenchTileH', '256']) match = [] if 'Android' in bot: |