Skip to content

Commit eb632ae

Browse files
committed
ci: run new submission_25_05_08
1 parent 4a45926 commit eb632ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

submissions/submission_25_05_08/neon_4.bench.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ BENCHMARK_TEMPLATE_DEFINE_F(GemmMxNxKFixture, BM_matmul_14_6_64, 14, 6, 64)(benc
2929
{
3030
for (auto _ : state)
3131
{
32-
matmul_14_6_64(matrix_a, matrix_b, matrix_c, 16, 64, 16);
32+
matmul_14_6_64(matrix_a, matrix_b, matrix_c, 14, 64, 14);
3333
}
3434

3535
flops = (14 *6 * 64) * 2; // M * N * K * 2 instructions (add & mul)
@@ -42,7 +42,7 @@ BENCHMARK_TEMPLATE_DEFINE_F(GemmMxNxKFixture, BM_matmul_15_6_64, 15, 6, 64)(benc
4242
{
4343
for (auto _ : state)
4444
{
45-
matmul_15_6_64(matrix_a, matrix_b, matrix_c, 15, 64, 16);
45+
matmul_15_6_64(matrix_a, matrix_b, matrix_c, 15, 64, 15);
4646
}
4747

4848
flops = (15 *6 * 64) * 2; // M * N * K * 2 instructions (add & mul)

0 commit comments

Comments
 (0)