Skip to content
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

upgrade dlpack to 0.5 #8262

Merged
merged 32 commits into from
May 25, 2021
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
4e9d7ee
upgrade dlpack to 0.5
cwharris May 17, 2021
de82ac4
upgrade dlpack to 0.5
revans2 May 17, 2021
61232d8
Merge branch 'upgrade-dlpack' into updgrade-dlpack-0.5
cwharris May 18, 2021
680ac4d
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 18, 2021
f6ecec7
add test file extension per cmake requirements
cwharris May 18, 2021
91d0e3d
Merge branch 'branch-21.06' into updgrade-dlpack-0.5
trxcllnt May 18, 2021
d01d71a
fix dlpack test and add temporary build.sh update
cwharris May 19, 2021
81edf66
update styles
cwharris May 19, 2021
2114756
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 19, 2021
7e691ec
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 20, 2021
858d360
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 20, 2021
c5ef1c5
fix dlpack_test.cpp to use kDLCUDA instead of kDLGPU
cwharris May 20, 2021
2e61289
revert build.sh temp changes
cwharris May 20, 2021
1b52d07
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 20, 2021
0625eed
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 22, 2021
26bc2d5
Merge branch 'updgrade-dlpack-0.5' of github.com:cwharris/cudf into u…
cwharris May 22, 2021
635f8e9
update gpu ci build.sh to install dlpack=0.5 for testing
cwharris May 22, 2021
7ab4ac7
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 24, 2021
937d07a
Merge branch 'updgrade-dlpack-0.5' of github.com:cwharris/cudf into u…
cwharris May 24, 2021
54b0875
force install dlpack 0.3 to check for test errors
cwharris May 24, 2021
31ac86e
remove temp build.sh changes
cwharris May 24, 2021
a2bb1e0
trick ccache to force rebuild dlpack_test.cpp with v 0.5
cwharris May 24, 2021
876d989
fix type in dlpack_test.cpp
cwharris May 24, 2021
18a5aef
force gcc to output headers of dlpack_test.cpp
cwharris May 25, 2021
1bb62dd
Merge branch 'updgrade-dlpack-0.5' of github.com:cwharris/cudf into u…
cwharris May 25, 2021
e6767d3
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 25, 2021
014e3a0
Merge branch 'updgrade-dlpack-0.5' of github.com:cwharris/cudf into u…
cwharris May 25, 2021
d82aab5
temporarilly remove dlpack_test.cpp impl, leaving headers, and add cu…
cwharris May 25, 2021
1ece85c
Merge branch 'branch-21.06' of github.com:rapidsai/cudf into updgrade…
cwharris May 25, 2021
9f347f2
.
cwharris May 25, 2021
df61f09
update cudf_kafka GetCudf to find local cudf
cwharris May 25, 2021
068012a
remove temporary cmake commands that print header paths
cwharris May 25, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpp/cmake/thirdparty/CUDF_GetDLPack.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ function(find_and_configure_dlpack VERSION)
set(DLPACK_INCLUDE_DIR "${dlpack_SOURCE_DIR}/include" PARENT_SCOPE)
endfunction()

set(CUDF_MIN_VERSION_dlpack 0.3)
set(CUDF_MIN_VERSION_dlpack 0.5)
cwharris marked this conversation as resolved.
Show resolved Hide resolved

find_and_configure_dlpack(${CUDF_MIN_VERSION_dlpack})