You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
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
PR augments the system with ability to model compilation. This PR introduces the following set of changes to the system:
System-wide enable_compilation_cache which determines whether or not we recompile the module upon subsequent query invocations.
Introduces a CompilationOperatingUnit that describes the instruction size, data size, number of functions, and number of static locals for each compilation module
compilation_runner that compiles valid TPL files based on sample_tpl/tpl_tests.txt to generate training data for the compilation OU.
Added a new COMPILATION metric which handles recording compilation OUs
Modifications to ou_model_trainer to handle compilation.csv
Remaining Tasks
Modify test to check compilation model train/infer
17zhangw
added
in-progress
This PR is being actively worked on and not ready to be reviewed or merged. Mark PRs with this.
ready-for-ci
Indicate that this build should be run through CI.
labels
Jul 28, 2021
Nice job! This PR has increased the throughput of the system.
Could not find any performance results to compare for this commit.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
in-progressThis PR is being actively worked on and not ready to be reviewed or merged. Mark PRs with this.ready-for-ciIndicate that this build should be run through CI.ready-for-reviewThis PR passes all checks and is ready to be reviewed. Mark PRs with this.
1 participant
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.
Description
PR augments the system with ability to model compilation. This PR introduces the following set of changes to the system:
enable_compilation_cache
which determines whether or not we recompile the module upon subsequent query invocations.CompilationOperatingUnit
that describes the instruction size, data size, number of functions, and number of static locals for each compilation modulecompilation_runner
that compiles valid TPL files based onsample_tpl/tpl_tests.txt
to generate training data for the compilation OU.COMPILATION
metric which handles recording compilation OUscompilation.csv
Remaining Tasks