"tests/python/pytorch/dataloading/test_dataloader.py" did not exist on "bdb88df576aa88610fc9793478e25ca10348f4a9"
Unverified Commit 182e1ad5 authored by Xin Yao's avatar Xin Yao Committed by GitHub
Browse files

[Bug] Fix broken static_assert (#4342)

parent 62c827c8
...@@ -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;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment