Skip to content

Commit

Permalink
update skiplist
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Oct 30, 2024
1 parent 6f21e07 commit 56d9741
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions skiplist.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
skip_list = [
{'scheme': 'aimer192s', 'implementation': 'opt_mem', 'estmemory': 70656},
{'scheme': 'aimer192s', 'implementation': 'ref', 'estmemory': 2036736},
{'scheme': 'aimer192f', 'implementation': 'opt_mem', 'estmemory': 46080},
{'scheme': 'aimer192f', 'implementation': 'ref', 'estmemory': 287744},
{'scheme': 'aimer128s', 'implementation': 'opt_mem', 'estmemory': 39936},
{'scheme': 'aimer128s', 'implementation': 'ref', 'estmemory': 924672},
{'scheme': 'aimer256f', 'implementation': 'opt_mem', 'estmemory': 105472},
{'scheme': 'aimer256f', 'implementation': 'ref', 'estmemory': 600064},
{'scheme': 'aimer256s', 'implementation': 'opt_mem', 'estmemory': 135168},
{'scheme': 'aimer256s', 'implementation': 'ref', 'estmemory': 4148224},
{'scheme': 'aimer128f', 'implementation': 'opt_mem', 'estmemory': 22528},
{'scheme': 'aimer128f', 'implementation': 'ref', 'estmemory': 131072},
{'scheme': 'aimer192s', 'implementation': 'm4stack', 'estmemory': 70656},
{'scheme': 'aimer192s', 'implementation': 'm4speed', 'estmemory': 360448},
{'scheme': 'aimer192f', 'implementation': 'm4stack', 'estmemory': 46080},
{'scheme': 'aimer192f', 'implementation': 'm4speed', 'estmemory': 287744},
{'scheme': 'aimer128s', 'implementation': 'm4stack', 'estmemory': 39936},
{'scheme': 'aimer128s', 'implementation': 'm4speed', 'estmemory': 172032},
{'scheme': 'aimer256f', 'implementation': 'm4stack', 'estmemory': 105472},
{'scheme': 'aimer256f', 'implementation': 'm4speed', 'estmemory': 600064},
{'scheme': 'aimer256s', 'implementation': 'm4stack', 'estmemory': 135168},
{'scheme': 'aimer256s', 'implementation': 'm4speed', 'estmemory': 633856},
{'scheme': 'aimer128f', 'implementation': 'm4stack', 'estmemory': 22528},
{'scheme': 'aimer128f', 'implementation': 'm4speed', 'estmemory': 131072},
{'scheme': 'aimer192s_mem', 'implementation': 'mem_opt', 'estmemory': 70656},
{'scheme': 'aimer192f_mem', 'implementation': 'mem_opt', 'estmemory': 46080},
{'scheme': 'aimer128s_mem', 'implementation': 'mem_opt', 'estmemory': 39936},
{'scheme': 'aimer256f_mem', 'implementation': 'mem_opt', 'estmemory': 105472},
{'scheme': 'aimer256s_mem', 'implementation': 'mem_opt', 'estmemory': 135168},
{'scheme': 'aimer128f_mem', 'implementation': 'mem_opt', 'estmemory': 22528},
{'scheme': 'ascon-sign-128f-robust', 'implementation': 'ref', 'estmemory': 21504},
{'scheme': 'ascon-sign-128f-simple', 'implementation': 'ref', 'estmemory': 21504},
{'scheme': 'ascon-sign-128s-robust', 'implementation': 'ref', 'estmemory': 12288},
Expand Down

0 comments on commit 56d9741

Please sign in to comment.