We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13d7a2c commit 20c3dd9Copy full SHA for 20c3dd9
setup.py
@@ -112,7 +112,7 @@ def get_extensions():
112
if suffix == 'cuda' and osp.exists(path):
113
sources += [path]
114
115
- phmap_dir = "third_party/parallel-hashmap"
+ phmap_dir = osp.abspath("third_party/parallel-hashmap")
116
117
Extension = CppExtension if suffix == 'cpu' else CUDAExtension
118
extension = Extension(
@@ -167,7 +167,7 @@ def get_extensions():
167
ext_modules=get_extensions() if not BUILD_DOCS else [],
168
cmdclass={
169
'build_ext':
170
- BuildExtension.with_options(no_python_abi_suffix=True, use_ninja=False)
+ BuildExtension.with_options(no_python_abi_suffix=True)
171
},
172
packages=find_packages(),
173
include_package_data=include_package_data,
0 commit comments