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

github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2020-04-28 21:16:51 +0300
committerKenneth Heafield <github@kheafield.com>2020-04-28 21:16:51 +0300
commit0dbb83a7bece1c5b61c5826c5bcd1d0c6e596bf8 (patch)
treeb7cb34692427edb3085f580c3bb721bfc498e260
parent7b5c9e642fa0f84e10167ab1f4a7850ae5496eb9 (diff)
Smaller tile for compiling checked in code
-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 a528837..05169c1 100644
--- a/benchmarks/benchmark_tile.cc
+++ b/benchmarks/benchmark_tile.cc
@@ -114,8 +114,8 @@ template <Index A_rows, Index B_cols> static void BenchmarkAndUpdate(Accessor ac
}
// Size of inner loop to sweep.
-constexpr Index kColsMax = 32;
-constexpr Index kRowsMax = 32;
+constexpr Index kColsMax = 16;
+constexpr Index kRowsMax = 16;
template <std::size_t... Iterator> static inline BestConfig BenchmarkKernels(TestMatrices8::AccessT accessor, Tile shape, index_sequence<Iterator...>) {
BestConfig ret;