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

return type inference regression for accessing the parameters field of nonconrete subtypes of DataType #57667

Open
nsajko opened this issue Mar 7, 2025 · 1 comment
Labels
compiler:inference Type inference invalidations regression 1.12 Regression in the 1.12 release

Comments

@nsajko
Copy link
Contributor

nsajko commented Mar 7, 2025

julia> Base.infer_return_type((x -> x.parameters), Tuple{Type{Tuple{Int}}})
Core.SimpleVector

julia> Base.infer_return_type((x -> x.parameters), Tuple{Type{Tuple{Any}}})
Core.SimpleVector

julia> versioninfo()
Julia Version 1.11.3
Commit d63adeda50d (2025-01-21 19:42 UTC)
Build Info:
  Official https://julialang.org/ release
Platform Info:
  OS: Linux (x86_64-linux-gnu)
  CPU: 8 × AMD Ryzen 3 5300U with Radeon Graphics
  WORD_SIZE: 64
  LLVM: libLLVM-16.0.6 (ORCJIT, znver2)
Threads: 1 default, 0 interactive, 1 GC (on 8 virtual cores)
julia> Base.infer_return_type((x -> x.parameters), Tuple{Type{Tuple{Int}}})
Core.SimpleVector

julia> Base.infer_return_type((x -> x.parameters), Tuple{Type{Tuple{Any}}})
Any

julia> versioninfo()
Julia Version 1.13.0-DEV.173
Commit beb928bfec5 (2025-03-06 13:25 UTC)
Build Info:
  Official https://julialang.org release
Platform Info:
  OS: Linux (x86_64-linux-gnu)
  CPU: 8 × AMD Ryzen 3 5300U with Radeon Graphics
  WORD_SIZE: 64
  LLVM: libLLVM-19.1.7 (ORCJIT, znver2)
  GC: Built with stock GC
Threads: 1 default, 1 interactive, 1 GC (on 8 virtual cores)

I'm guessing there's a isconcretetype(type) check somewhere that just needs a type isa DataType check?

@nsajko
Copy link
Contributor Author

nsajko commented Mar 7, 2025

Bisected to #57275. EDIT: that PR is correct and a bugfix. However, it still seems like it may be possible to fix this inference regression by improving the "precision of the compiler model", accounting for the fact that DataType is the only one with a field named parameters, presumably in Compiler/src/tfuncs.jl.

@nsajko nsajko removed their assignment Mar 7, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compiler:inference Type inference invalidations regression 1.12 Regression in the 1.12 release
Projects
None yet
Development

No branches or pull requests

1 participant