https://github.com/mupq/pqm4
Revision 89e9eb125d2f6dea52fbbc3898fbfb509ce243a8 authored by Matthias J. Kannwischer on 25 November 2019, 13:33:26 UTC, committed by Ko- on 25 November 2019, 13:33:26 UTC
In https://github.com/libopencm3/libopencm3/commit/ca6dcfbea137bd2145b4a7fbf24379f565f8280d
libopencm3 slightly changed the clock setup so we need to adjust that as well.
As all changes are in the clock setup, this does not affect benchmarks at all.
1 parent 1624ff1
Raw File
Tip revision: 89e9eb125d2f6dea52fbbc3898fbfb509ce243a8 authored by Matthias J. Kannwischer on 25 November 2019, 13:33:26 UTC
Update libopencm3 (#125)
Tip revision: 89e9eb1
testvectors.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.TestVectors(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top