summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorJake Weinstein <jake@aospa.co>2020-02-19 17:12:48 +0100
committerJake Weinstein <jake@aospa.co>2020-02-19 17:18:25 +0100
commit4b11192d8a55eb9eefd071693a1276b60fd8e816 (patch)
treea6a18857a9050460098265c6867335840f11c01f /benchmarks
parent3597b0676b6b9c886ced9fb5d0e6e74379965c91 (diff)
benchmarks: add 16 and 32 bytes to common sizes
Per Wilco Dijkstra at ARM, 16 and 32 byte copies are much more common than 8 or 64. Change-Id: I3699d8bcd5f9dd8a8ccd8564a6cf58d2bd7089f5 Suggested-By: Wilco Dijkstra <wilco.dijkstra@arm.com>
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/bionic_benchmarks.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/benchmarks/bionic_benchmarks.cpp b/benchmarks/bionic_benchmarks.cpp
index 7139cfa6b..187ee76e7 100644
--- a/benchmarks/bionic_benchmarks.cpp
+++ b/benchmarks/bionic_benchmarks.cpp
@@ -39,6 +39,8 @@
static const std::vector<int> kCommonSizes{
8,
+ 16,
+ 32,
64,
512,
1 * KB,