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 7ce31b4 commit 06cbba2Copy full SHA for 06cbba2
setup.py
@@ -49,7 +49,7 @@ def get_extensions():
49
source_cuda = glob.glob(os.path.join(extensions_dir, "**", "*.cu"), recursive=True)
50
extension = CppExtension
51
52
- extra_compile_args = {"cxx": ["-std=c++14"]}
+ extra_compile_args = {"cxx": []}
53
define_macros = []
54
include_dirs = [extensions_dir]
55
@@ -73,8 +73,6 @@ def get_extensions():
73
"-D__CUDA_NO_HALF_CONVERSIONS__",
74
"-D__CUDA_NO_HALF2_OPERATORS__",
75
]
76
- if os.name != "nt":
77
- nvcc_args.append("-std=c++14")
78
if cub_home is None:
79
prefix = os.environ.get("CONDA_PREFIX", None)
80
if prefix is not None and os.path.isdir(prefix + "/include/cub"):
0 commit comments