-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GPUassert: invalid configuration argument #46
Comments
Hi, that's probably related to the arguments you used to call the function, but it's hard to know only from that error log. Could you share the code to replicate the error? |
import numpy as np audio, sr = sf.read("recapnet-vctk_p225_013_50cm.wav") room_size = [5, 4, 3] rir = simulateRIR(room_size, reflection_coeffs, source_positions, receiver_positions, image_sources, rir_length, sampling_rate) Here is my code above, and below is the error message. GPUassert: invalid configuration argument /raid/chenjincheng/package/gpuRIR-master/src/gpuRIR_cuda.cu 672 |
The issue is probably that you're asking for a too-long RIR. I don't know how long is your file Btw, I don't know your application so I don't know if this is possible, but in general, I first choose the |
Thanks a lot ,I'll give it a try |
Hi,I encountered the following error when running the code. How can I resolve it?
GPUassert: invalid configuration argument /raid/chenjincheng/package/gpuRIR-master/src/gpuRIR_cuda.cu 672
The text was updated successfully, but these errors were encountered: