Skip to content

Add support for generating scripts to run benchmarks locally. #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
426 changes: 234 additions & 192 deletions .github/workflows/exhaustiveccured.yml

Large diffs are not rendered by default.

426 changes: 234 additions & 192 deletions .github/workflows/exhaustiveleastgreatest.yml

Large diffs are not rendered by default.

334 changes: 188 additions & 146 deletions .github/workflows/exhaustivestats.yml

Large diffs are not rendered by default.

150 changes: 96 additions & 54 deletions .github/workflows/main.yml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.mypy_cache
408 changes: 329 additions & 79 deletions generate-workflow.py

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[mypy]
disallow_untyped_defs = true
# TODO: I'd like to disallow variables that have an implicit Any type (e.g.,
# variables copied from fields of an argparse args object), but I don't see an
# option for that as of 2022-01-07. disallow_any_expr causes so many other
# errors that it isn't worth it. ~ Matt

# To enable narrower suppression comments.
show_error_codes = true

# The current version of dmypy in our preferred Ubuntu 20.04 environment (0.761)
# doesn't support `follow_imports = normal`; that was added in 0.780
# (https://github.com/python/mypy/issues/5870). `follow_imports = error` is
# working for me in VSCodium so far. ~ Matt 2022-01-06
follow_imports = error