Skip to content

Commit c6eca17

Browse files
committed
chores: cleanup for submission tag
1 parent 515c7ca commit c6eca17

File tree

11 files changed

+145
-160
lines changed

11 files changed

+145
-160
lines changed

docs_sphinx/submissions/report_25_05_01.rst

Lines changed: 128 additions & 143 deletions
Large diffs are not rendered by default.

submissions/submission_25_05_01/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,21 @@ set(SRC_FILES
5454
neon_1_1.s
5555
neon_1_2.s
5656

57-
neon_2_1_simple.s
58-
neon_2_1_unrolled.s
57+
neon_2_simple.s
58+
neon_2_unrolled.s
5959

6060
neon_3_1.s
6161
neon_3_2.s
6262
neon_3_3.s
6363
)
6464

6565
set(TEST_FILES
66-
neon_2_1.test.cpp
66+
neon_2.test.cpp
6767
neon_3.test.cpp
6868
)
6969

7070
set(BENCH_FILES
71-
neon_2_1.bench.cpp
71+
neon_2.bench.cpp
7272
neon_3.bench.cpp
7373
)
7474

@@ -80,8 +80,8 @@ add_executable(neon_1_2 "${SRC_FILES}"
8080
neon_1_2_driver.cpp
8181
)
8282

83-
add_executable(neon_2_1 "${SRC_FILES}"
84-
neon_2_1_driver.cpp
83+
add_executable(neon_2 "${SRC_FILES}"
84+
neon_2_driver.cpp
8585
)
8686

8787
# add_executable(loops "${SRC_FILES}")

submissions/submission_25_05_01/neon_2_1.bench.cpp renamed to submissions/submission_25_05_01/neon_2.bench.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <benchmark/benchmark.h>
2-
#include "neon_2_1.h"
2+
#include "neon_2.h"
33

44
class Gemm16x6x1Fixture : public benchmark::Fixture
55
{

submissions/submission_25_05_01/neon_2_1.h renamed to submissions/submission_25_05_01/neon_2.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef MLC_NEON_2_1_H
2-
#define MLC_NEON_2_1_H
1+
#ifndef MLC_neon_2_H
2+
#define MLC_neon_2_H
33

44
#include <cstdint>
55
#include <cstdlib>
@@ -61,4 +61,4 @@ void fill_matmul_16_6_1(float * __restrict__ a, float * __restrict__ b, float *
6161
verify_c[i] = c[i];
6262
}
6363
}
64-
#endif // MLC_NEON_2_1_H
64+
#endif // MLC_neon_2_H

submissions/submission_25_05_01/neon_2_1.test.cpp renamed to submissions/submission_25_05_01/neon_2.test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <catch2/catch_test_macros.hpp>
22
#include <catch2/matchers/catch_matchers_floating_point.hpp>
33
#include <cstdint>
4-
#include "neon_2_1.h"
4+
#include "neon_2.h"
55

66
void verify_matmul_16_6_1(const float *__restrict__ expected, const float *__restrict__ result)
77
{
@@ -14,7 +14,7 @@ void verify_matmul_16_6_1(const float *__restrict__ expected, const float *__res
1414
}
1515
}
1616

17-
TEST_CASE("Test 16x6x1 simple gemm correctness random data", "[neon_2_1][correctness][gemm]")
17+
TEST_CASE("Test 16x6x1 simple gemm correctness random data", "[neon_2][correctness][gemm]")
1818
{
1919
float matrix_a[16 * 1];
2020
float matrix_b[1 * 6];
@@ -30,7 +30,7 @@ TEST_CASE("Test 16x6x1 simple gemm correctness random data", "[neon_2_1][correct
3030
verify_matmul_16_6_1(matrix_c_verify, matrix_c);
3131
}
3232

33-
TEST_CASE("Test 16x6x1 unrolled gemm correctness random data", "[neon_2_1][correctness][gemm]")
33+
TEST_CASE("Test 16x6x1 unrolled gemm correctness random data", "[neon_2][correctness][gemm]")
3434
{
3535
float matrix_a[16 * 1];
3636
float matrix_b[1 * 6];

submissions/submission_25_05_01/neon_2_1_driver.cpp renamed to submissions/submission_25_05_01/neon_2_driver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <iostream>
22
#include <cstdint>
3-
#include "neon_2_1.h"
3+
#include "neon_2.h"
44

55
void matmul_16_6_1(const float *__restrict__ a, const float *__restrict__ b, float *__restrict__ c,
66
int64_t lda, int64_t ldb, int64_t ldc)
File renamed without changes.
File renamed without changes.

submissions/submission_25_05_01/neon_3_1.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// using the neon_2_1_unrolled as base kernel as it is the fast based on benchmarks
1+
// using the neon_2_unrolled as base kernel as it is the fast based on benchmarks
22

33
/**
44
* @param x0 = a pointer to column-major 16x64 matrix A.

submissions/submission_25_05_01/neon_3_2.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// using the neon_2_1_unrolled as base kernel as it is the fast based on benchmarks
1+
// using the neon_2_unrolled as base kernel as it is the fast based on benchmarks
22

33
/**
44
* @param x0 = a pointer to column-major 64x64 matrix A.

0 commit comments

Comments
 (0)