File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 5
5
## Improvements
6
6
7
7
- PR #477 Just use ` None ` for ` strides ` in ` DeviceBuffer `
8
+ - PR #480 Build RMM's Python bindings with PTDS
8
9
9
10
## Bug Fixes
10
11
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ def get_cuda_version_from_header(cuda_include_dir):
77
77
except Exception :
78
78
nthreads = 0
79
79
80
+ define_macros = [
81
+ ("CUDA_API_PER_THREAD_DEFAULT_STREAM" , None ),
82
+ ]
83
+
80
84
include_dirs = [
81
85
"../include/rmm" ,
82
86
"../include" ,
@@ -125,6 +129,7 @@ def get_cuda_version_from_header(cuda_include_dir):
125
129
],
126
130
libraries = ["cuda" , "rmm" ],
127
131
language = "c++" ,
132
+ define_macros = define_macros ,
128
133
extra_compile_args = ["-std=c++14" ],
129
134
)
130
135
],
@@ -148,6 +153,7 @@ def get_cuda_version_from_header(cuda_include_dir):
148
153
],
149
154
libraries = ["cuda" , "rmm" ],
150
155
language = "c++" ,
156
+ define_macros = define_macros ,
151
157
extra_compile_args = ["-std=c++14" ],
152
158
)
153
159
],
You can’t perform that action at this time.
0 commit comments