-
Notifications
You must be signed in to change notification settings - Fork 130
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
Add scripts to replicate the experiments from arXiv:2109.08267v1 #484
Merged
ChrisCummins
merged 57 commits into
facebookresearch:development
from
ChrisCummins:cgo-ae
Nov 16, 2021
Merged
Add scripts to replicate the experiments from arXiv:2109.08267v1 #484
ChrisCummins
merged 57 commits into
facebookresearch:development
from
ChrisCummins:cgo-ae
Nov 16, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
facebook-github-bot
added
the
CLA Signed
This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
label
Nov 16, 2021
Moving this class into the core compiler_gym library enables it to be reused by other example code and other users.
Rather than adding submitit to the list of core dependencies, defer module import until it is needed, printing an error message if it is not available.
Codecov Report
@@ Coverage Diff @@
## development #484 +/- ##
===============================================
- Coverage 87.81% 85.32% -2.50%
===============================================
Files 111 113 +2
Lines 6182 6397 +215
===============================================
+ Hits 5429 5458 +29
- Misses 753 939 +186
Continue to review full report at Codecov.
|
ChrisCummins
changed the title
[examples] Add scripts to replicate experiments from arXiv:2109.08267v1
Add scripts to replicate the experiments from arXiv:2109.08267v1
Nov 16, 2021
This was referenced Nov 17, 2021
Closed
Merged
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
CLA Signed
This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This patch set adds scripts to replicate the experiments from our CompilerGym pre-print, specifically:
examples/op_benchmarks.py
for microbenchmarking operations.examples/llvm_autotuning
for autotuning the LLVM phase ordering environment.examples/gcc_autotuning
for autotuning the GCC command line flag environment (thanks @hughleat!).examples/loop_tool_sweep.py
for running CUDA inner loop size sweeps with loop_tool (thanks @bwasti!).examples/gnn_cost_model
for training a GNN cost model on the state transition dataset (thanks @bcui19!).examples/llvm_rl
for running reinforcement learning experiments using RLlib.