Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion kernel/arm64/dgemm_small_kernel_tn_sve.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ CNAME(BLASLONG M,
const BLASLONG n2 = N & -2;
const BLASLONG n8 = N & -8;

const int pack_a = M >= v_size2 && N >= 8 && K >= 8 ? 1 : 0;
const int pack_a = M >= v_size2 && N >= 8 ? 1 : 0;
FLOAT* packed_a =
(pack_a) ? packed_a = (FLOAT*)malloc(K * v_size2 * sizeof(FLOAT)) : NULL;

Expand Down
2 changes: 1 addition & 1 deletion kernel/arm64/dgemm_small_kernel_tt_sve.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ CNAME(BLASLONG M,
const BLASLONG n4 = N & -4;
const BLASLONG n2 = N & -2;

const int pack_a = M >= v_size2 && N >= 8 && K >= 8 ? 1 : 0;
const int pack_a = M >= v_size2 && N >= 8 ? 1 : 0;
FLOAT* packed_a =
(pack_a) ? packed_a = (FLOAT*)malloc(K * v_size2 * sizeof(FLOAT)) : NULL;

Expand Down
2 changes: 1 addition & 1 deletion kernel/arm64/sgemm_small_kernel_tn_sve.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ CNAME(BLASLONG M,
const BLASLONG n8 = N & -8;
const BLASLONG n4 = N & -4;

const int pack_a = M >= v_size2 && N >= 8 && K >= 8 ? 1 : 0;
const int pack_a = M >= v_size2 && N >= 8 ? 1 : 0;
FLOAT* packed_a =
(pack_a) ? packed_a = (FLOAT*)malloc(K * v_size2 * sizeof(FLOAT)) : NULL;

Expand Down
2 changes: 1 addition & 1 deletion kernel/arm64/sgemm_small_kernel_tt_sve.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ CNAME(BLASLONG M,
const BLASLONG n8 = N & -8;
const BLASLONG n4 = N & -4;

const int pack_a = M >= v_size2 && N >= 8 && K >= 8 ? 1 : 0;
const int pack_a = M >= v_size2 && N >= 8 ? 1 : 0;
FLOAT* packed_a =
(pack_a) ? packed_a = (FLOAT*)malloc(K * v_size2 * sizeof(FLOAT)) : NULL;

Expand Down
Loading