-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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 TensorFlow and PyTorch compatibility #3574
Conversation
|
||
set(Boost_TAR_GZ_URL http://dl.bintray.com/boostorg/release/1.65.1/source/boost_1_65_1.tar.gz) | ||
set(Boost_TAR_GZ_URL http://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.tar.gz) |
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.
Upgrading boost was needed to fix some incompatibility with macOS
12af5c3
to
7958751
Compare
Test FAILed. |
Test FAILed. |
Test FAILed. |
jenkins retest this please |
Test FAILed. |
jenkins retest this please |
Test FAILed. |
python/README-building-wheels.md
Outdated
@@ -9,7 +9,7 @@ produce .whl files owned by root. | |||
Inside the root directory (i.e., one level above this python directory), run | |||
|
|||
``` | |||
docker run --rm -w /ray -v `pwd`:/ray -ti quay.io/xhochy/arrow_manylinux1_x86_64_base:latest /ray/python/build-wheel-manylinux1.sh | |||
docker run --rm -w /ray -v `pwd`:/ray -ti rayproject/ray_arrow_manylinux1_x86_64_base:latest /ray/python/build-wheel-manylinux1.sh |
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.
The script for building this docker image needs to be committed somewhere and documented here.
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.
I think this is not needed any more, I'm trying to remove it.
Test FAILed. |
Test FAILed. |
@@ -14,11 +14,11 @@ | |||
# - PLASMA_STATIC_LIB | |||
# - PLASMA_SHARED_LIB | |||
|
|||
set(arrow_URL https://github.com/apache/arrow.git) | |||
# The PR for this commit is https://github.com/apache/arrow/pull/3154. We | |||
set(arrow_URL https://github.com/ray-project/arrow.git) |
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.
Can you document why we're cloning a fork and maybe include a link to the discussion in the arrow PR?
@@ -54,11 +54,14 @@ ADD_THIRDPARTY_LIB(boost_system | |||
STATIC_LIB ${Boost_SYSTEM_LIBRARY}) | |||
ADD_THIRDPARTY_LIB(boost_filesystem | |||
STATIC_LIB ${Boost_FILESYSTEM_LIBRARY}) | |||
ADD_THIRDPARTY_LIB(boost_thread |
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.
fix indentation, same with above lines I think
Looks good to me other than the comments I left and the comments discussed in person (that the diff from the main arrow repository should be squashed into a single commit). |
Test FAILed. |
Test FAILed. |
What do these changes do?
Related issue number
#3520