-
Notifications
You must be signed in to change notification settings - Fork 19
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
fix: scoping #100
base: master
Are you sure you want to change the base?
fix: scoping #100
Conversation
Wow, indeed! You are delving in a hacky mess that has not been touched probably by anyone except for Ben, the original author. If this is merged, it will certainly be a breaking release, but for the better. @gerlero , as one of the main current users, a check from you will be very helpful. The original bounty is for a hopefully much cleaner fix that can be made possible in the future, but you are right that the infrastructure library on which it would depend is probably not anywhere close to ready. But I should be able to figure out some form of award for this more restricted set of fixes. I can not commit anything explicit right now, please give me a week to go through some logistical questions on my end. FYI, I will not be very responsive for the next week as I am running a summer workshop (qnumerics.org). |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #100 +/- ##
==========================================
+ Coverage 79.78% 80.14% +0.36%
==========================================
Files 6 6
Lines 455 680 +225
==========================================
+ Hits 363 545 +182
- Misses 92 135 +43 ☔ View full report in Codecov by Sentry. |
@thofma , I added you to the repository with triage access so that CI is not auto-blocked for you. Apologies for the spam. |
Thanks. I got the upstream tests working (will add some of the examples as tests here). But I cannot wrap my hand around the error for Fronts.jl. Even with ResumabelFunctions 0.6.9 I get:
So the error happens even without the changes here? |
Fronts.jl is by @gerlero (pinging in case you have time to look at this). Their last CI is from two months ago, but it passes on julia 1.10 (and it fails on nightly but with an unrelated error) |
The only errors in the "breakage" CI run are the ones that are already present without this PR, see #101. |
|
Reporting back: I made a hotfix for the latest and LTS failures. |
0133327
to
f0bc063
Compare
Tests are looking good, thanks for the quick fix. |
@Krastanov Modulo cleaning up and documenting the approach, I am happy with the functionality. I linked the issues that are resolved with this in OP. But there are many other things that got fixed along the way (see the added tests). Note that in my experience, just using JuliaLowering to rename the variables is only part of the solution. One then still has to resolve the challenges arising from "let", "for" and "named tuples". |
@Krastanov Any update on this? |
Apologies for the long wait on this. The start of the semester was a bit hectic, but it was unprofessional of me to not warn you about the delay. It will take me a bit to go over the complete review, but this looks very promising. As we had already discussed, the original bounty had slightly different scope. The main difference that is left compared to the original scope is that JuliaLowering can provide more resilient and clean way to create the state machine (in particular, an implementation that is much more probable to NOT deviate from Julia semantics in some weird edge cases). But in comparison to all the heavy lifting you have already done, that is a small component. I would like to reserve 400$ of the original bounty for that final push to JuliaLowering (when JuliaLowering is ready), but after review I will send the rest to you, either together with the bounties already being processed for you, or as a separate transfer (depending on how quickly we process the first round of bounties). This is slightly informal and potentially uncomfortable position, as the decision on what the award is, happens after most of the work has been done. I acknowledge that. Please do not hesitate to contest what I have described above. |
Sounds good to me, but could you wait with the review till I have cleaned it up a bit? I will let you know once it is ready. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is very impressive work and I am eager to merge it. I left only documentation-related comments (things you might already be thinking of anyway, mostly aimed at future maintainers).
I left a bunch of comments of the form "Could you add an error message?". This is more for my sake than the users, so that I do not get confused if I need to work on this codebase in the future. Something along the lines of While transforming a @resumable function into a finite state machine, the following contract was broken: ... Please report this as a bug in ResumableFunctions.jl
src/transforms.jl
Outdated
function transform_macro(ex) | ||
ex isa Expr || return ex | ||
ex.head !== :macrocall && return ex | ||
return Expr(:call, :__secret__, ex.args) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is a global const gensym
viable here instead of __secret__
? I guess gensym
is not deterministic so this can be bad. What about just a struct MacroMarker end
instance?
I just want to avoid the exceedingly rare possibility that some other weird metaprogramming package is using the same symbol.
Whoops, just saw your other message. My bad! Anyway, my first round review was pretty superficial (I did not feel like I wasted time) and I probably pointed out things you already were planning to clean up. |
be8d557
to
88705c4
Compare
I updated the PR, hopefully addressing all your comments @Krastanov. I also added a fix for a julia regression on >= 1.11 (JuliaLang/julia#54664). Let me know if there some anything else that needs to be done. |
This looks great! I should be able to give a more thorough review towards the end of next week. In the meantime I will prod the NumFOCUS folks again on the bounty processing, as it seems the previous round has still not been sent out (should have been out last week). |
What a ride.
It is still not finished, but all tests are passing for now. Actually, lots of tests themselves had scoping issues and should not have been valid before. Also some examples in the manual were actually wrong.
Todo
let i = i; j = i
a = sin; b = a(2)
).(;a) = b
syntax (named tuple syntax breaks@resumable
#93)UndefVarError: #temp# not defined
#14 (need to fix thefor
pass)UndefVarError: #temp# not defined
#14)@Krastanov I poked at the problem using JuliaLowering (after I built the unique julia master version for which some combination of packages works). I don't think it is in a state to be used here. I already spent too much time thinking about scope, so I cooked up this solution here.
Closes #14, #32, #69, #70, #93