https://github.com/mupq/pqm4
Revision f8408c0f43929f31ee62c46b6e652d91d0124017 authored by Matthias J. Kannwischer on 18 July 2019, 06:07:34 UTC, committed by GitHub on 18 July 2019, 06:07:34 UTC
* add -lm to LDFLAGS_HOST

* skip implementations of falcon1024-tree

* add m4 optimized implementations of falcon

* add benchmarks
1 parent cd3d685
Raw File
Tip revision: f8408c0f43929f31ee62c46b6e652d91d0124017 authored by Matthias J. Kannwischer on 18 July 2019, 06:07:34 UTC
Add Falcon (#102)
Tip revision: f8408c0
benchmarks.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys

if __name__ == "__main__":
    with M4() as m4:
        if "--nostack" not in sys.argv:
            test = mupq.StackBenchmark(M4Settings(), m4)
            test.test_all(sys.argv[1:])

        if "--nospeed" not in sys.argv:
            test = mupq.SpeedBenchmark(M4Settings(), m4)
            test.test_all(sys.argv[1:])

        if "--nohashing" not in sys.argv:
            test = mupq.HashingBenchmark(M4Settings(), m4)
            test.test_all(sys.argv[1:])

        if "--nosize" not in sys.argv:
            test = mupq.SizeBenchmark(M4Settings(), m4)
            test.test_all(sys.argv[1:])
back to top