-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
fix(build): Add remote function benchmark under benchmark flags #11905
fix(build): Add remote function benchmark under benchmark flags #11905
Conversation
✅ Deploy Preview for meta-velox canceled.
|
@@ -16,4 +16,6 @@ add_subdirectory(if) | |||
add_subdirectory(client) | |||
add_subdirectory(server) | |||
add_subdirectory(utils) | |||
if(${VELOX_ENABLE_BENCHMARKS} OR ${VELOX_ENABLE_BENCHMARKS_BASIC}) |
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.
${VELOX_ENABLE_BENCHMARKS}
should be sufficient.
45e1240
to
2cd7668
Compare
The remote function benchmarks are built without checking if the benchmark utilities are being built. These are only built if certain flags are set. This causes upstream issues in Prestissimo because there remote functions are being built but the benchmarks are not. PR introducing the breaking change: facebookincubator#11539
2cd7668
to
9c4d3b9
Compare
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.
Thanks !
@kgpai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
The remote function benchmarks are built without checking if the benchmark utilities are being built. These are only built if certain flags are set.
This causes upstream issues in Prestissimo because there remote functions are being built but the benchmarks are not.
PR introducing the breaking change:
#11539