https://github.com/mupq/pqm4
Revision c37e5417322429230aa7992822e2a295e36133ea authored by vincentvbh on 29 January 2022, 01:24:18 UTC, committed by GitHub on 29 January 2022, 01:24:18 UTC
* ntruhps2048509

* ntruhps2048677, ntruhrss701

* ntruhps4096821

* update benchmarks

Co-authored-by: Matthias J. Kannwischer <matthias@kannwischer.eu>
1 parent 2691b49
Raw File
Tip revision: c37e5417322429230aa7992822e2a295e36133ea authored by vincentvbh on 29 January 2022, 01:24:18 UTC
More readable and improved NTTs for NTRU (#219)
Tip revision: c37e541
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import parse_arguments, get_platform
from mupq import mupq


if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        mupq.BuildAll(settings).test_all(rest)
back to top