Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change comments in test_sgemv.c #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/blas/level1/test_sgemv.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ MunitResult test_sgemv_0_row(const MunitParameter params[],
const float32_t beta = { SB_REAL32_ZERO }; // Scalar beta

// 2x2 matrix A (row-major order)
// [1.0 3.0]
// [2.0 4.0]
// [1.0 2.0]
// [3.0 4.0]
const uint64_t M = 2; // Number of rows in A
const uint64_t N = 2; // Number of columns in A
float32_t* A = svec((float[]){1.0f, 2.0f, 3.0f, 4.0f}, 4);
Expand Down Expand Up @@ -56,8 +56,8 @@ MunitResult test_sgemv_0_col(const MunitParameter params[],
const float32_t beta = { SB_REAL32_ZERO }; // Scalar beta

// 2x2 matrix A (column-major order)
// [1.0 3.0]
// [2.0 4.0]
// [1.0 2.0]
// [3.0 4.0]
const uint64_t M = 2; // Number of rows in A
const uint64_t N = 2; // Number of columns in A
float32_t* A = svec((float[]){1.0f, 3.0f, 2.0f, 4.0f}, 4);
Expand Down