Skip to content
Open
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
6 changes: 5 additions & 1 deletion kernel/arm64/ssymm_direct_alpha_beta_arm64_sme1.c
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,11 @@ static void ssymm_direct_sme1_preprocessLL(uint64_t nbr, uint64_t nbc,
}
}
}

#else
static void ssymm_direct_sme1_preprocessLU(uint64_t nbr, uint64_t nbc,
const float *restrict a, float *restrict a_mod){}
static void ssymm_direct_sme1_preprocessLL(uint64_t nbr, uint64_t nbc,
const float *restrict a, float *restrict a_mod){}
#endif

//
Expand Down
2 changes: 2 additions & 0 deletions kernel/arm64/strmm_direct_arm64_sme1.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@ static inline void strmm_direct_alpha_sme1_2VLx2VL(uint64_t m, uint64_t k, uint6
}

#else
void strmm_direct_sme1_preprocess(uint64_t nbr, uint64_t nbc,
const float *restrict a, float *restrict a_mod) {}
void strmm_direct_alpha_sme1_2VLx2VL(uint64_t m, uint64_t k, uint64_t n, const float* alpha,\
const float *ba, float *restrict bb){}
#endif
Expand Down
Loading