We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This leaks memory:
import bohrium as bh def foo(a): b = bh.random.rand(*a.shape) a[...] = b bh.flush() a = bh.random.rand(10) while True: foo(a)
This does not:
import bohrium as bh a = bh.random.rand(10) b = bh.random.rand(*a.shape) def foo(a): a[...] = b bh.flush() while True: foo(a)
The text was updated successfully, but these errors were encountered:
It this still an issue? I see no leak on my machine.
Sorry, something went wrong.
Yup: (current master)
Seems fixed!
No branches or pull requests
This leaks memory:
This does not:
The text was updated successfully, but these errors were encountered: