Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dgl
Commits
9f445a13
Unverified
Commit
9f445a13
authored
Dec 03, 2021
by
Jinjing Zhou
Committed by
GitHub
Dec 03, 2021
Browse files
Fix removed submodule (#3560)
parent
67f93144
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
.gitmodules
.gitmodules
+0
-6
CMakeLists.txt
CMakeLists.txt
+0
-3
No files found.
.gitmodules
View file @
9f445a13
...
...
@@ -7,9 +7,6 @@
[submodule "third_party/googletest"]
path = third_party/googletest
url = https://github.com/google/googletest.git
[submodule "third_party/minigun"]
path = third_party/minigun
url = https://github.com/jermainewang/minigun.git
[submodule "third_party/METIS"]
path = third_party/METIS
url = https://github.com/KarypisLab/METIS.git
...
...
@@ -20,9 +17,6 @@
[submodule "third_party/phmap"]
path = third_party/phmap
url = https://github.com/greg7mdp/parallel-hashmap.git
[submodule "third_party/thrust"]
path = third_party/thrust
url = https://github.com/NVIDIA/thrust.git
[submodule "third_party/xbyak"]
path = third_party/xbyak
url = https://github.com/herumi/xbyak
...
...
CMakeLists.txt
View file @
9f445a13
...
...
@@ -54,7 +54,6 @@ if(USE_CUDA)
# is fixed by https://github.com/NVIDIA/cub/commit/9143e47e048641aa0e6ddfd645bcd54ff1059939
# in 11.1.
message
(
STATUS
"Detected CUDA of version
${
CUDA_VERSION
}
. Use external CUB/Thrust library."
)
cuda_include_directories
(
BEFORE
"
${
CMAKE_SOURCE_DIR
}
/third_party/thrust"
)
cuda_include_directories
(
BEFORE
"
${
CMAKE_SOURCE_DIR
}
/third_party/cub"
)
endif
()
endif
(
USE_CUDA
)
...
...
@@ -202,8 +201,6 @@ endif(USE_CUDA)
target_include_directories
(
dgl PRIVATE
"include"
)
target_include_directories
(
dgl PRIVATE
"third_party/dlpack/include"
)
target_include_directories
(
dgl PRIVATE
"third_party/dmlc-core/include"
)
target_include_directories
(
dgl PRIVATE
"third_party/minigun/minigun"
)
target_include_directories
(
dgl PRIVATE
"third_party/minigun/third_party/moderngpu/src"
)
target_include_directories
(
dgl PRIVATE
"third_party/phmap/"
)
target_include_directories
(
dgl PRIVATE
"third_party/xbyak/"
)
target_include_directories
(
dgl PRIVATE
"third_party/METIS/include/"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment