-
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
[llvm] Add a new Bitcode observation space. #442
[llvm] Add a new Bitcode observation space. #442
Conversation
This adds a Bitcode observation space that returns the bitcode of an LLVM module directly as a byte array, without having to go via an intermediate file. Fixes facebookresearch#426.
Codecov Report
@@ Coverage Diff @@
## development #442 +/- ##
===============================================
+ Coverage 87.36% 87.38% +0.02%
===============================================
Files 104 104
Lines 5966 5969 +3
===============================================
+ Hits 5212 5216 +4
+ Misses 754 753 -1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect :)
This adds a Bitcode observation space that returns the bitcode of an
LLVM module directly as a byte array, without having to go via an
intermediate file.
Fixes #426.