https://github.com/mupq/pqm4
Revision bfef406e70c01d6541179e4d91f071698feee5b1 authored by Matthias J. Kannwischer on 29 May 2020, 05:32:17 UTC, committed by Ko- on 30 May 2020, 09:21:49 UTC
1 parent af4b38f
Raw File
Tip revision: bfef406e70c01d6541179e4d91f071698feee5b1 authored by Matthias J. Kannwischer on 29 May 2020, 05:32:17 UTC
add gcc10 benchmarks
Tip revision: bfef406
test.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys

if __name__ == "__main__":
    with M4() as m4:
        test = mupq.SimpleTest(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top