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
Maybe add a check_dynamic_dispatch function that only checks the presence of dynamic dispatch?
check_dynamic_dispatch
The text was updated successfully, but these errors were encountered:
Once #36 lands this can be done with:
julia> foo() = rand(Any[1,1.0]) + true julia> count(err isa AllocCheck.DynamicDispatch for err in check_allocs(foo, ())) 1
Sorry, something went wrong.
AllocationSite
AllocatingRuntimeCall
DynamicDispatch
Successfully merging a pull request may close this issue.
Maybe add a
check_dynamic_dispatch
function that only checks the presence of dynamic dispatch?The text was updated successfully, but these errors were encountered: