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 33dc96c commit 023c25dCopy full SHA for 023c25d
mamba_ssm/__init__.py
@@ -1,4 +1,4 @@
1
-__version__ = "1.0.0"
+__version__ = "1.0.1"
2
3
from mamba_ssm.ops.selective_scan_interface import selective_scan_fn, mamba_inner_fn
4
from mamba_ssm.modules.mamba_simple import Mamba
setup.py
@@ -134,10 +134,11 @@ def append_nvcc_threads(nvcc_extra_args):
134
"csrc/selective_scan/selective_scan_bwd_bf16_complex.cu",
135
],
136
extra_compile_args={
137
- "cxx": ["-O3"],
+ "cxx": ["-O3", "-std=c++17"],
138
"nvcc": append_nvcc_threads(
139
[
140
"-O3",
141
+ "-std=c++17",
142
"-U__CUDA_NO_HALF_OPERATORS__",
143
"-U__CUDA_NO_HALF_CONVERSIONS__",
144
"-U__CUDA_NO_BFLOAT16_OPERATORS__",
0 commit comments