mirror of
https://github.com/amd/blis.git
synced 2026-03-27 04:37:22 +00:00
- Add explicit parentheses around (n <= 1520) && (k <= 128) to clarify operator precedence and resolve compiler warning. The intended logic is (m <= 1380) OR (n <= 1520 AND k <= 128). - This change eliminates the compiler warning about mixing || and && operators without explicit grouping.