File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 55## Improvements
66
77- PR #477 Just use ` None ` for ` strides ` in ` DeviceBuffer `
8+ - PR #480 Build RMM's Python bindings with PTDS
89
910## Bug Fixes
1011
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ def get_cuda_version_from_header(cuda_include_dir):
7777except Exception :
7878 nthreads = 0
7979
80+ define_macros = [
81+ ("CUDA_API_PER_THREAD_DEFAULT_STREAM" , None ),
82+ ]
83+
8084include_dirs = [
8185 "../include/rmm" ,
8286 "../include" ,
@@ -125,6 +129,7 @@ def get_cuda_version_from_header(cuda_include_dir):
125129 ],
126130 libraries = ["cuda" , "rmm" ],
127131 language = "c++" ,
132+ define_macros = define_macros ,
128133 extra_compile_args = ["-std=c++14" ],
129134 )
130135 ],
@@ -148,6 +153,7 @@ def get_cuda_version_from_header(cuda_include_dir):
148153 ],
149154 libraries = ["cuda" , "rmm" ],
150155 language = "c++" ,
156+ define_macros = define_macros ,
151157 extra_compile_args = ["-std=c++14" ],
152158 )
153159 ],
You can’t perform that action at this time.
0 commit comments