-
Notifications
You must be signed in to change notification settings - Fork 48
No method matching reprcontext #193
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
Comments
Which branch are you on? Recommended is |
I'll try this Note: what I did for the moment is: function snoopf!(v)
remove = Int[]
for i in 1:length(v)
try; SnoopCompile.parcel(v[i:i]); catch; push!(remove, i); end
end
return deleteat!(v, remove)
end which works well. (I get 819 / 868) I'll report what happens with |
With |
Oh wait, you were using a released version of SnoopCompile? That error looks like it must be due to JuliaLang/julia#38136. I've not updated this to nightly yet. It seems to work on release-1.6, though. |
Ah I should have thought of that, sorry! The error reported above is with v"1.7.0-DEV.137" ; I just tried with Thanks Tim and apologies for the spam! |
Not spam. And the current situation may not be clear, so just FYI:
Docs for the new version can be viewed from preview in #192. |
I tried to use SnoopCompile with Franklin's tests today but the
SnoopCompile.parcel(inf_timing)
step failed withwhat I did is simply
A basic guess would be that SnoopCompile doesn't like the creation of module and evaluation of code within these temporary modules. But would there maybe be a way to skip this rather than fail? Or should I just have a simpler example for
@snoopi
than the full test suite?thanks!
PS: maybe a workaround is to filter the result of
inf_timing
to remove things that throw offparcel
? if so how would I do this?The text was updated successfully, but these errors were encountered: