[PATCH] D83692: Add first microbenchmarks for matrix types extensions.
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 13 10:27:06 PDT 2020
fhahn marked an inline comment as done.
fhahn added inline comments.
================
Comment at: MicroBenchmarks/MatrixTypes/main.cpp:147
+
+BENCHMARK_TEMPLATE(BM_MatrixTypes_Mult_Transpose, float, 15, 19, 15, 19);
+BENCHMARK_TEMPLATE(BM_MatrixTypes_Mult_Transpose, double, 15, 19, 15, 19);
----------------
paquette wrote:
> Why 15 and 19?
No particular reason, it could be 17 and 13 or a similar combination around the 16 element range. The intention for those is to also cover some cases where the number of elements isn't a power-of-2 and more unusual combinations.
Repository:
rT test-suite
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83692/new/
https://reviews.llvm.org/D83692
More information about the llvm-commits
mailing list