You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As spotted by @NHDaly on RelationalAI slack; I'm making this issue so it doesn't get lost.
functionassign_node_ids(node, starting_id::Int)
ii = starting_id
function_traverse(φ::BackIRType)
new_φ =_copy_and_assign_id(φ, ii)
if new_φ !== φ
ii +=1endreturn new_φ
end_traverse(n) = n
return (bottomup(_traverse)(node), ii)
end
Which gave
UndefVarError: `ii` not defined in local scope
Suggestion: check for an assignment to a local variable that shadows a global of the same name.
Thanks Tomas. @gbaraldi you have access to our codebase and this should be easy to reproduce if you want to! We can even walk you through it again on zoom if you want
As spotted by @NHDaly on RelationalAI slack; I'm making this issue so it doesn't get lost.
Which gave
pointing to the first line in the closure:
CC: @gbaraldi
The text was updated successfully, but these errors were encountered: