-
Notifications
You must be signed in to change notification settings - Fork 31
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
Report allocations #286
Comments
JET is a static analyzer. There's no reasonable way that it could predict the amount of memory required, but it might be able to address whether memory would be allocated at all. ProfileView makes it pretty easy to find "serious" allocation: just look for yellow bars. |
Right. In some places I may want to ensure there will be no allocation. Highlighting those locations, just like |
The relevant Julia issue is "A macro that forbids allocation – turning allocation into error" JuliaLang/julia#34248 |
See the related package: https://github.com/JuliaLang/AllocCheck.jl |
Julia docs say
Julia has some memory-allocation analysis but it would be useful to have in JET.
The text was updated successfully, but these errors were encountered: