-
Notifications
You must be signed in to change notification settings - Fork 6.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
[core] Place plasma bazel targets into separate directories #52016
Conversation
@@ -219,3 +219,9 @@ filter_files_with_suffix = rule( | |||
"suffix": attr.string(), | |||
}, | |||
) | |||
|
|||
FLATC_ARGS = [ |
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.
nit: add a comment
load("//bazel:ray.bzl", "COPTS", "FLATC_ARGS", "ray_cc_library", "ray_cc_test") | ||
|
||
# TODO(mehrdadn): (How to) support dynamic linking? | ||
PROPAGATED_WINDOWS_DEFINES = ["ARROW_STATIC"] |
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.
nit: starlark mostly follows python grammar, so prefer to use _
prefix to indicate private variables.
out_prefix = "", | ||
) | ||
|
||
ray_cc_test( |
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.
Just FYI: I don't have a strong preference here, but generally BUILD file lives under the same directory as the source file (which is also the purpose for this issue :) )
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.
Sure! I checked the /src/ray/common
and it put the tests at seperate BUILD file.
2d454c7
to
ab3ce40
Compare
@Ziy1-Tan Just FYI, as far as I'm aware of, currently main branch is broken and tests pretty flaky; so you don't need to take too much time debugging and merging main :) |
ab3ce40
to
3bd5670
Compare
@@ -18,8 +18,6 @@ | |||
#include <utility> | |||
#include <vector> | |||
|
|||
#include "absl/random/random.h" | |||
#include "absl/strings/str_format.h" |
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 for cleaning up!
Just enabled ci for you, ping me when it's passed, thank you! |
3d668ff
to
7207c64
Compare
Signed-off-by: Ziy1-Tan <[email protected]>
Signed-off-by: Ziy1-Tan <[email protected]>
Signed-off-by: Ziy1-Tan <[email protected]>
Signed-off-by: Ziy1-Tan <[email protected]>
Signed-off-by: Ziy1-Tan <[email protected]>
Signed-off-by: Ziy1-Tan <[email protected]>
7207c64
to
c7f737b
Compare
Hey, @dentiny . The CI is good now:) |
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!
…ect#52016) Closes ray-project#52010 --------- Signed-off-by: Ziy1-Tan <[email protected]> Signed-off-by: Steve Han <[email protected]>
Why are these changes needed?
Related issue number
Closes #52010
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.