JCruan519/VM-UNet

"selective_scan" is not found

Opened this issue · 14 comments

image
I already installed causal_conv1d and mamba_ssm. However, an error occurred as shown in the figure, how can I slove it? thanks!

I also have this problem. Have you found a solution?

I also have this problem. Have you found a solution?

I'm sorry, I haven't found a way to solve the problem yet.

I also have this problem. Have you found a solution?

I'm sorry, I haven't found a way to solve the problem yet.

Okay, thank you!

@LHY0329 , @StudyCrw My cuda version is 12.2. I have installed mamba-ssm=1.0.1 and casual-conv1d=1.2.0post2. I am facing the NameError: name 'selective_scan_fn' is not defined. Could you solve the issue you faced?

@LHY0329 , @StudyCrw My cuda version is 12.2. I have installed mamba-ssm=1.0.1 and casual-conv1d=1.2.0post2. I am facing the NameError: name 'selective_scan_fn' is not defined. Could you solve the issue you faced?

I haven't found a solution either.

@LHY0329 您好?请问您解决这个问题了吗?如果解决的话可以告诉我下吗 ?

@StudyCrw 您好?请问您解决这个问题了吗?如果解决的话可以告诉我下吗 ?

@hafsa390 您好?请问您解决这个问题了吗?如果解决的话可以告诉我下吗 ?

I haven't found a solution either.

@LHY0329 , @StudyCrw My cuda version is 12.2. I have installed mamba-ssm=1.0.1 and casual-conv1d=1.2.0post2. I am facing the NameError: name 'selective_scan_fn' is not defined. Could you solve the issue you faced?

I haven't found a solution either.

@hafsa390 您好?请问您解决这个问题了吗?如果解决的话可以告诉我下吗 ?

I have installed the mamba-ssm and causal_conv1d packages using the .whl files from here: https://github.com/state-spaces/mamba/releases and https://github.com/Dao-AILab/causal-conv1d/releases. After that the error did not show up.

@hafsa390 您好?请问您解决这个问题了吗?如果解决的话可以告诉我下吗 ?

I have installed the mamba-ssm and causal_conv1d packages using the .whl files from here: https://github.com/state-spaces/mamba/releases and https://github.com/Dao-AILab/causal-conv1d/releases. After that the error did not show up.

Which version do you have installed?

Actually,u just need to make sure ur cuda's version is 11.8,use nvcc -V and check it.If the version is not 11.8,u can use:
conda install cudatoolkit==11.8 -c nvidia
conda install -c "nvidia/label/cuda-11.8.0" cuda-nvcc

Then use nvcc -V to see the version

Next,u just follow the README,it should work.

Actually,u just need to make sure ur cuda's version is 11.8,use nvcc -V and check it.If the version is not 11.8,u can use: conda install cudatoolkit==11.8 -c nvidia conda install -c "nvidia/label/cuda-11.8.0" cuda-nvcc

Then use nvcc -V to see the version

Next,u just follow the README,it should work.

Sorry for the late reply. Thank you very much for your answer.