-
-
Notifications
You must be signed in to change notification settings - Fork 30
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
Out of Dynamic GPU memory in EnsembleGPUKernel for higher number of threads when using ContinuousCallback #219
Comments
What GPU? A100? Is it just the memory scaling? Is it fine with a higher dt? |
The GPU is A30. This is the error that comes out for
|
Smaller batches or higher dt? Did you calculate out the batch memory size requirement? |
For Using DiscreteCallback, I tested it with |
It also fails for |
This happens due to an allocation within a kernel (in the case of StaticArrays-code typically due to escape analysis going wrong). You can spot it by prefixing code that launches kernels with
|
Hello, I was testing the new updates to
Terminete!
with EnsembleGPUKernel. It Works fine with DiscreteCallback, however when using ContinuousCallback I still have the problem, Out of Dynamic GPU memory in EnsembleGPUKernel for higher number of threads. I attach the code usedThe text was updated successfully, but these errors were encountered: