-
Notifications
You must be signed in to change notification settings - Fork 6.1k
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
Merged
Merged
Changes from 39 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
6301f8f
remove tensorflow workaround
pcmoritz a347461
update docker
pcmoritz e61516a
update
pcmoritz 6b6d59c
add boost threads
pcmoritz 66908aa
update
pcmoritz 106608e
add date_time, too
pcmoritz 95ba9bc
more flags
pcmoritz 0114b9b
update
pcmoritz 5c393f7
update
pcmoritz 84ff57e
update
pcmoritz 6c34543
fix
pcmoritz ef4ec90
update
pcmoritz e1b25eb
update
pcmoritz 785c73d
update
pcmoritz 8d0b97d
update
pcmoritz 6286371
update
pcmoritz 3ad0246
fix
pcmoritz 4044408
fix
pcmoritz 01137ee
update
pcmoritz 13d5a25
fix
pcmoritz d1cc6ed
fix
pcmoritz 77212ef
fix
pcmoritz c6ac872
update
pcmoritz f8b75ef
update
pcmoritz 9534cca
update
pcmoritz 60888b5
fix
pcmoritz d5e1f08
Merge branch 'master' into ray-tf-compat
pcmoritz d19990e
fix
pcmoritz 2ec4a63
Merge branch 'ray-tf-compat' of github.com:pcmoritz/ray-1 into ray-tf…
pcmoritz 7c83c16
update
pcmoritz aed0799
change link order
pcmoritz 3081766
update
pcmoritz 9267cf8
update
pcmoritz 7958751
update
pcmoritz 19f1ecb
update
pcmoritz 85b88da
update
pcmoritz 75856ad
Merge branch 'master' into ray-tf-compat
pcmoritz 04f1045
rerun Travis
pcmoritz a516d38
fix
pcmoritz f822d04
cosmetics
pcmoritz 79bac41
fix
pcmoritz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. fix indentation, same with above lines I think |
||
STATIC_LIB ${Boost_THREAD_LIBRARY}) | ||
|
||
add_dependencies(boost_system boost_ep) | ||
add_dependencies(boost_filesystem boost_ep) | ||
add_dependencies(boost_thread boost_ep) | ||
|
||
add_custom_target(boost DEPENDS boost_system boost_filesystem) | ||
add_custom_target(boost DEPENDS boost_system boost_filesystem boost_thread) | ||
|
||
# flatbuffers | ||
include(FlatBuffersExternalProject) | ||
|
@@ -120,6 +123,7 @@ if ("${CMAKE_RAY_LANG_PYTHON}" STREQUAL "YES") | |
"PYARROW_WITH_TENSORFLOW=1" | ||
"PYARROW_BUNDLE_ARROW_CPP=1" | ||
"PARQUET_HOME=${PARQUET_HOME}" | ||
"BOOST_ROOT=${BOOST_ROOT}" | ||
"PYARROW_WITH_PARQUET=1" | ||
"PYARROW_PARALLEL=") | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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?