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

Make Hierarchical KV self-sufficient. #127

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 7 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
[submodule "tests/googletest"]
path = tests/googletest
path = third_party/googletest
url = https://github.com/google/googletest.git
ignore = dirty
[submodule "third_party/libcudacxx"]
path = third_party/libcudacxx
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be better to specify the stable releases or branches. These should be the latest version of them, maybe be helpful:
https://github.com/NVIDIA/thrust/releases/tag/2.1.0
https://github.com/NVIDIA/libcudacxx/releases/tag/2.1.0

url = https://github.com/NVIDIA/libcudacxx
[submodule "third_party/thrust"]
path = third_party/thrust
url = https://github.com/NVIDIA/thrust.git
8 changes: 6 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,14 @@ message(CMAKE_CUDA_FLAGS="${CMAKE_CUDA_FLAGS}")

include_directories(
${PROJECT_SOURCE_DIR}/include
${PROJECT_SOURCE_DIR}/tests/googletest/googletest/include
${PROJECT_SOURCE_DIR}/third_party/libcudacxx/include
${PROJECT_SOURCE_DIR}/third_party/thrust/include
${PROJECT_SOURCE_DIR}/third_party/googletest/googletest/include
)

ADD_SUBDIRECTORY(tests/googletest)
ADD_SUBDIRECTORY(third_party/googletest)
ADD_SUBDIRECTORY(third_party/libcudacxx)
ADD_SUBDIRECTORY(third_party/thrust)

link_directories(
)
Expand Down
1 change: 1 addition & 0 deletions third_party/libcudacxx
Submodule libcudacxx added at 88a91d
1 change: 1 addition & 0 deletions third_party/thrust
Submodule thrust added at cf0fc2