forked from google/XNNPACK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths16-rmaxabs.cc
101 lines (89 loc) · 2.83 KB
/
s16-rmaxabs.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Copyright 2022 Google LLC
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.
#include <algorithm>
#include <cmath>
#include <functional>
#include <numeric>
#include <vector>
#include "bench/utils.h"
#include <benchmark/benchmark.h>
#include <xnnpack.h>
#include <xnnpack/aligned-allocator.h>
#include <xnnpack/common.h>
#include <xnnpack/microfnptr.h>
#include <xnnpack/rmaxabs.h>
void s16_rmaxabs(
benchmark::State& state,
xnn_s16_rmaxabs_ukernel_fn rmaxabs,
benchmark::utils::IsaCheckFunction isa_check = nullptr)
{
if (isa_check != nullptr && !isa_check(state)) {
return;
}
const size_t channels = state.range(0);
std::vector<int16_t, AlignedAllocator<int16_t, 64>> input(
(channels) + XNN_EXTRA_BYTES / sizeof(int16_t));
std::iota(input.begin(), input.end(), 0);
uint16_t output = UINT16_C(0);
for (auto _ : state) {
rmaxabs(channels, input.data(), &output);
}
const uint64_t cpu_frequency = benchmark::utils::GetCurrentCpuFrequency();
if (cpu_frequency != 0) {
state.counters["cpufreq"] = cpu_frequency;
}
}
static void BenchmarkBatch(benchmark::internal::Benchmark* b)
{
b->ArgNames({"batch"});
b->Args({32});
b->Args({64});
b->Args({216});
b->Args({400});
b->Args({1000});
b->Args({10000});
b->Args({100000});
}
#if XNN_ARCH_ARM || XNN_ARCH_ARM64
BENCHMARK_CAPTURE(s16_rmaxabs, s16_neon_x8,
xnn_s16_rmaxabs_ukernel__neon_x8,
benchmark::utils::CheckNEON)
->Apply(BenchmarkBatch)
->UseRealTime();
BENCHMARK_CAPTURE(s16_rmaxabs, s16_neon_x16,
xnn_s16_rmaxabs_ukernel__neon_x16,
benchmark::utils::CheckNEON)
->Apply(BenchmarkBatch)
->UseRealTime();
BENCHMARK_CAPTURE(s16_rmaxabs, s16_neon_x24,
xnn_s16_rmaxabs_ukernel__neon_x24,
benchmark::utils::CheckNEON)
->Apply(BenchmarkBatch)
->UseRealTime();
BENCHMARK_CAPTURE(s16_rmaxabs, s16_neon_x32,
xnn_s16_rmaxabs_ukernel__neon_x32,
benchmark::utils::CheckNEON)
->Apply(BenchmarkBatch)
->UseRealTime();
#endif // XNN_ARCH_ARM || XNN_ARCH_ARM64
BENCHMARK_CAPTURE(s16_rmaxabs, s16_scalar_x1,
xnn_s16_rmaxabs_ukernel__scalar_x1)
->Apply(BenchmarkBatch)
->UseRealTime();
BENCHMARK_CAPTURE(s16_rmaxabs, s16_scalar_x2,
xnn_s16_rmaxabs_ukernel__scalar_x2)
->Apply(BenchmarkBatch)
->UseRealTime();
BENCHMARK_CAPTURE(s16_rmaxabs, s16_scalar_x3,
xnn_s16_rmaxabs_ukernel__scalar_x3)
->Apply(BenchmarkBatch)
->UseRealTime();
BENCHMARK_CAPTURE(s16_rmaxabs, s16_scalar_x4,
xnn_s16_rmaxabs_ukernel__scalar_x4)
->Apply(BenchmarkBatch)
->UseRealTime();
#ifndef XNNPACK_BENCHMARK_NO_MAIN
BENCHMARK_MAIN();
#endif