Merge pull request #42 from sazczmh/main

Performance: reducing the percentage of FFMA interleaving yields a sight performance gain, roughly 0.5%
This commit is contained in:
Liang 2025-03-05 20:09:56 +08:00 committed by GitHub
commit 9d3222a93e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,7 @@ def parse_registers(line):
def modify_segment(m, name, ffma_lines):
num_lines = len(ffma_lines)
num_lines = (len(ffma_lines) * 9 // 16) // 2 * 2
assert num_lines % 2 == 0
le_bytes, new_le_bytes = [], []