CPU FA: disable mask optimization (#1935)

This commit is contained in:
Kawrakow 2026-06-09 09:13:19 +02:00 committed by GitHub
parent bbe1a511ee
commit a38d29232d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ namespace {
// lengths and therefore different mask patterns.
// Returns the number of K elements to process (multiple of k_step).
inline int mask_effective_nk1(const char * mask, int n_rows, int stride_m, int nk1, int k_step) {
return nk1;
int ik_max = 0;
for (int j = 0; j < n_rows; ++j) {
auto Mc = (const uint16_t *)(mask + j * stride_m);