-
Notifications
You must be signed in to change notification settings - Fork 54
Introduce bfoptimize to optimize the generate bytecode using LLMs
#489
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
base: main
Are you sure you want to change the base?
Changes from all commits
99230ee
7a70d63
42c1f4a
21a9ef3
1b13b30
8818223
b58470e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -95,9 +95,8 @@ You can then use CMake to generate the build system: | |
| The usual CMake options are allowed (e.g. ``CMAKE_BUILD_TYPE``, ``CMAKE_INSTALL_PREFIX``...). The build configuration is modular, so you're free to enable/disable some parts of the projects according to your needs: | ||
|
|
||
| - ``-DNO_DOCS``: disable the documentation, including the coverage and benchmarks report. | ||
| - ``-DNO_TESTS``: disable unit tests, end-to-end tests, and integration tests. | ||
| - ``-DNO_TESTS``: disable all tests. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Claude: suggestion: The |
||
| - ``-DNO_CHECKS``: disable style check and static analyzer. | ||
| - ``-DNO_BENCHMARKS``: disable benchmarks. | ||
|
|
||
| A full configuration (without any part disabled) will provide the following targets: | ||
|
|
||
|
|
||
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.
Claude: suggestion:
NO_TESTSnow also disables benchmarks (since the benchmark CMake target moved undertests/), but the option description still reads"Disable unit, end-to-end, and integration tests". Users who previously used-DNO_BENCHMARKSindependently need to know this. Update to something like"Disable unit, end-to-end, integration tests, and benchmarks".