Skip to content

Commit

Permalink
add tex converter
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Oct 18, 2024
1 parent d2b1f08 commit 2a4a011
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion convert_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from mupq import mupq

def usage():
print("Usage: python3 convert_benchmarks.py csv|md")
print("Usage: python3 convert_benchmarks.py csv|md|tex")
sys.exit(1)

if __name__ == "__main__":
Expand All @@ -14,6 +14,8 @@ def usage():
converter = mupq.CsvConverter()
elif sys.argv[1] == "md":
converter = mupq.MarkdownConverter()
elif sys.argv[1] == "tex":
converter = mupq.TexConverter()
else:
usage()
converter.convert()
2 changes: 1 addition & 1 deletion mupq
Submodule mupq updated 2 files
+34 −19 crypto_kem/speed.c
+53 −6 mupq.py

0 comments on commit 2a4a011

Please sign in to comment.