Skip to content
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

traced loop conflicts: Better error message #1038

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Conversation

jumerckx
Copy link
Collaborator

No description provided.

Comment on lines +356 to +358
resis = Set(map(get_residx.(linear_results)) do path
path[2:end]
end)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
resis = Set(map(get_residx.(linear_results)) do path
path[2:end]
end)
resis = Set(
map(get_residx.(linear_results)) do path
path[2:end]
end,
)

@jumerckx
Copy link
Collaborator Author

TODO: test

using Reactant

mutable struct Pair
    a
    b
end

function f(x, p)
    @trace track_numbers=false for _ in 1:3
        # newp = Pair(p.a + x, p.b + x)
        p.a += x
        p.b += x
    end
    return p
end

p = Pair(ConcreteRNumber(3), 4)
x = ConcreteRNumber(2)

@jit f(x, p)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant