-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize
sum
for XFE by batch-reading elements
For input sizes of around 200, this reduces clock cycle count by ~60 %.
- Loading branch information
1 parent
ec3cdb9
commit 2ea4a96
Showing
2 changed files
with
148 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[ | ||
{ | ||
"name": "tasm_list_unsafeimplu32_sum_xfe", | ||
"clock_cycle_count": 1064, | ||
"hash_table_height": 36, | ||
"u32_table_height": 0, | ||
"clock_cycle_count": 466, | ||
"hash_table_height": 72, | ||
"u32_table_height": 12, | ||
"case": "CommonCase" | ||
}, | ||
{ | ||
"name": "tasm_list_unsafeimplu32_sum_xfe", | ||
"clock_cycle_count": 10064, | ||
"hash_table_height": 36, | ||
"u32_table_height": 0, | ||
"clock_cycle_count": 3886, | ||
"hash_table_height": 72, | ||
"u32_table_height": 15, | ||
"case": "WorstCase" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters