Skip to content

Type assertion in take!(::RemoteChannel) #41403

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

Merged
merged 1 commit into from
Jul 2, 2021

Conversation

jishnub
Copy link
Member

@jishnub jishnub commented Jun 29, 2021

Since the eltype of a RemoteChannel is known, the result of fetch or take! on a RemoteChannel may be asserted to be of the correct type. This might help with type-inference in subsequent code.

On nightly/master

julia> r = RemoteChannel(() -> Channel{Int}(1))
RemoteChannel{Channel{Int64}}(1, 1, 1)

julia> @code_warntype fetch(r)
MethodInstance for fetch(::RemoteChannel{Channel{Int64}})
  from fetch(r::RemoteChannel, args...) in Distributed at /home/jishnu/Downloads/julia/julia-d1145d4569/share/julia/stdlib/v1.8/Distributed/src/remotecall.jl:547
Arguments
  #self#::Core.Const(fetch)
  r::RemoteChannel{Channel{Int64}}
  args::Tuple{}
Body::Any
1%1 = Core.tuple(Distributed.fetch_ref, r)::Tuple{typeof(Distributed.fetch_ref), RemoteChannel{Channel{Int64}}}%2 = Core._apply_iterate(Base.iterate, Distributed.call_on_owner, %1, args)::Any
└──      return %2

julia> @code_warntype take!(r)
MethodInstance for take!(::RemoteChannel{Channel{Int64}})
  from take!(rr::RemoteChannel, args...) in Distributed at /home/jishnu/Downloads/julia/julia-d1145d4569/share/julia/stdlib/v1.8/Distributed/src/remotecall.jl:626
Arguments
  #self#::Core.Const(take!)
  rr::RemoteChannel{Channel{Int64}}
  args::Tuple{}
Body::Any
1%1 = Distributed.myid()::Int64%2 = Core.tuple(Distributed.take_ref, rr, %1)::Tuple{typeof(Distributed.take_ref), RemoteChannel{Channel{Int64}}, Int64}%3 = Core._apply_iterate(Base.iterate, Distributed.call_on_owner, %2, args)::Any
└──      return %3

After this PR:

julia> @code_warntype fetch(r)
MethodInstance for fetch(::RemoteChannel{Channel{Int64}})
  from fetch(r::RemoteChannel, args...) in Distributed at /home/jishnu/julia/stdlib/Distributed/src/remotecall.jl:547
Arguments
  #self#::Core.Const(fetch)
  r::RemoteChannel{Channel{Int64}}
  args::Tuple{}
Body::Int64
1%1 = Core.tuple(Distributed.fetch_ref, r)::Tuple{typeof(Distributed.fetch_ref), RemoteChannel{Channel{Int64}}}%2 = Core._apply_iterate(Base.iterate, Distributed.call_on_owner, %1, args)::Any%3 = Distributed.eltype(r)::Core.Const(Int64)
│   %4 = Core.typeassert(%2, %3)::Int64
└──      return %4

julia> @code_warntype take!(r)
MethodInstance for take!(::RemoteChannel{Channel{Int64}})
  from take!(rr::RemoteChannel, args...) in Distributed at /home/jishnu/julia/stdlib/Distributed/src/remotecall.jl:626
Arguments
  #self#::Core.Const(take!)
  rr::RemoteChannel{Channel{Int64}}
  args::Tuple{}
Body::Int64
1%1 = Distributed.myid()::Int64%2 = Core.tuple(Distributed.take_ref, rr, %1)::Tuple{typeof(Distributed.take_ref), RemoteChannel{Channel{Int64}}, Int64}%3 = Core._apply_iterate(Base.iterate, Distributed.call_on_owner, %2, args)::Any%4 = Distributed.eltype(rr)::Core.Const(Int64)
│   %5 = Core.typeassert(%3, %4)::Int64
└──      return %5

Copy link
Member

@KristofferC KristofferC left a comment

Choose a reason for hiding this comment

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

Looks ok to me at least.

@vtjnash vtjnash merged commit 46cd67f into JuliaLang:master Jul 2, 2021
johanmon pushed a commit to johanmon/julia that referenced this pull request Jul 5, 2021
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.

3 participants