Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/benchmark_tile.cc')
-rw-r--r--benchmarks/benchmark_tile.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/benchmark_tile.cc b/benchmarks/benchmark_tile.cc
index 05169c1..f6ff0b7 100644
--- a/benchmarks/benchmark_tile.cc
+++ b/benchmarks/benchmark_tile.cc
@@ -93,9 +93,9 @@ template <Index A_rows, Index B_cols> static inline double BenchmarkNoOverhang(A
typedef AVX512VNNI::UnrollKernel<A_rows, 1, B_cols, AVX512VNNI::Shifted8> Kernel;
// Burn in.
// TODO: different arches, guard against old compilers, etc.
- AVX512VNNI::MultiplyNoOverhang<Accessor, Kernel>(access, shape);
+ AVX512VNNI::MultiplyNoOverhang<Kernel>(access, shape);
for (std::size_t t = 0; t < kTries; ++t) {
- AVX512VNNI::MultiplyNoOverhang<Accessor, Kernel>(access, shape);
+ AVX512VNNI::MultiplyNoOverhang<Kernel>(access, shape);
}
auto end = std::chrono::steady_clock::now();
return std::chrono::duration<double>(end - start).count() / kTries;