44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
// Copyright 2024 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 <benchmark/benchmark.h>
|
|
#include "bgemm.h"
|
|
#include "packw-benchmark.h"
|
|
#include "utils.h"
|
|
#include "xnnpack/common.h"
|
|
#include "xnnpack/hardware-config.h"
|
|
#include "xnnpack/packw.h"
|
|
|
|
static void qs8_packw(benchmark::State& state, const char* net,
|
|
xnn_qs8_packw_gemm_goi_ukernel_fn ukernel,
|
|
uint64_t arch_flags, size_t nr, size_t kr, size_t sr) {
|
|
benchmark::utils::CheckArchFlags(state, arch_flags);
|
|
qs8_packw(state, ukernel, nr, kr, sr);
|
|
}
|
|
|
|
static void qs8_gio_packw(benchmark::State& state, const char* net,
|
|
xnn_qs8_packw_gemm_gio_ukernel_fn ukernel,
|
|
uint64_t arch_flags, size_t nr, size_t kr, size_t sr) {
|
|
benchmark::utils::CheckArchFlags(state, arch_flags);
|
|
qs8_gio_packw(state, ukernel, nr, kr, sr);
|
|
}
|
|
|
|
#define XNN_QS8_UKERNEL(arch_flags, ukernel, nr, kr, sr, kblock, nr_scale, izp) \
|
|
BENCHMARK_CAPTURE_BGEMM(qs8_packw, ukernel##_, ukernel, arch_flags, nr, kr, sr);
|
|
|
|
#define XNN_QS8_GIO_UKERNEL(arch_flags, ukernel, nr, kr, sr, kblock, nr_scale, izp) \
|
|
BENCHMARK_CAPTURE_BGEMM(qs8_gio_packw, ukernel##_, ukernel, arch_flags, nr, kr, sr);
|
|
|
|
#include "qs8-packw/qs8-packw.h"
|
|
|
|
#undef XNN_QS8_UKERNEL
|
|
|
|
|
|
#ifndef XNNPACK_BENCHMARK_NO_MAIN
|
|
BENCHMARK_MAIN();
|
|
#endif
|
|
|