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
182e1ad5
"tests/python/pytorch/dataloading/test_dataloader.py" did not exist on "bdb88df576aa88610fc9793478e25ca10348f4a9"
Unverified
Commit
182e1ad5
authored
Aug 09, 2022
by
Xin Yao
Committed by
GitHub
Aug 09, 2022
Browse files
[Bug] Fix broken static_assert (#4342)
parent
62c827c8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/array/cuda/rowwise_sampling_prob.cu
src/array/cuda/rowwise_sampling_prob.cu
+1
-1
No files found.
src/array/cuda/rowwise_sampling_prob.cu
View file @
182e1ad5
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
#include "../../runtime/cuda/cuda_common.h"
#include "../../runtime/cuda/cuda_common.h"
// require CUB 1.17 to use DeviceSegmentedSort
// require CUB 1.17 to use DeviceSegmentedSort
static_assert
(
CUB_VERSION
>=
101700
);
static_assert
(
CUB_VERSION
>=
101700
,
"Require CUB >= 1.17 to use DeviceSegmentedSort"
);
using
namespace
dgl
::
aten
::
cuda
;
using
namespace
dgl
::
aten
::
cuda
;
...
...
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