blob: ae596bbb631dd607526f38a0d02fdd93b05fa6f9 [file] [log] [blame] [edit]
// 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 <benchmark/benchmark.h>
#include "bench/utils.h"
#include <xnnpack.h>
#include <xnnpack/aligned-allocator.h>
#include <xnnpack/common.h>
#include <xnnpack/microfnptr.h>
#include <xnnpack/transpose.h>
void transpose(
benchmark::State& state,
xnn_transposev_ukernel_function transpose,
benchmark::utils::IsaCheckFunction isa_check = nullptr)
{
if (isa_check && !isa_check(state)) {
return;
}
const size_t height = state.range(0);
const size_t width = state.range(1);
const size_t element_size = state.range(2);
const size_t tile_hbytes = height * 3;
const size_t tile_wbytes = width * 3;
std::vector<uint8_t, AlignedAllocator<uint8_t, 64>> x(
height * width * element_size + XNN_EXTRA_BYTES / sizeof(uint8_t));
std::vector<uint8_t, AlignedAllocator<uint8_t, 64>> y(
height * width * element_size + XNN_EXTRA_BYTES / sizeof(uint8_t));
std::iota(x.begin(), x.end(), 0);
std::fill(y.begin(), y.end(), 0);
for (auto _ : state) {
transpose(x.data(), y.data(), tile_wbytes, tile_hbytes, element_size,
element_size, element_size, width, height);
}
const uint64_t cpu_frequency = benchmark::utils::GetCurrentCpuFrequency();
if (cpu_frequency != 0) {
state.counters["cpufreq"] = cpu_frequency;
}
}
static void BenchmarkKernelSize(benchmark::internal::Benchmark* b)
{
b->ArgNames({"height", "width", "element_size"});
//b->Args({32, 32, 3});
//b->Args({64, 64, 3});
//b->Args({117, 117, 3});
//b->Args({1024, 1024, 3});
b->Args({49153, 8, 128});
}
BENCHMARK_CAPTURE(transpose, 1x1_mmemcpy, xnn_xx_transposev_ukernel__1x1_memcpy)
->Apply(BenchmarkKernelSize)->UseRealTime();
#ifndef XNNPACK_BENCHMARK_NO_MAIN
BENCHMARK_MAIN();
#endif