Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@terasakisatoshi
Created October 31, 2021 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terasakisatoshi/4e9bcdf028c700a18e5d5e549107f39f to your computer and use it in GitHub Desktop.
Save terasakisatoshi/4e9bcdf028c700a18e5d5e549107f39f to your computer and use it in GitHub Desktop.
Channels in Action
using Random
using ProgressMeter
function myproducer(ch::Channel, seed)
Random.seed!(seed)
while true
r = rand()
if r > 0.5
put!(ch, r)
else
sleep(r)
end
end
end
function mypipe(inC::Channel, outC::Channel)
while isopen(inC) && isopen(outC)
data = take!(inC)
result = 1 - data
sleep(result) # do something that takes some time
put!(outC, result)
end
end
function myconsumer(c::Channel, n::Int)
s = 0.
@showprogress for _ in 1:n
s += take!(c)
end
@show s
end
function main(n=50; seed=54321)
sz = 10
i = Channel(c -> myproducer(c, seed), sz)
o = Channel(sz)
task = @async mypipe(i, o)
@time myconsumer(o, n)
close(i); close(o)
end
main()
using Random
using ProgressMeter
Base.@kwdef struct NaiveProducer
n::Int
seed::Int
end
Base.length(lc::NaiveProducer) = lc.n
function Base.iterate(lc::NaiveProducer, state=1)
state == 1 && Random.seed!(lc.seed)
state > lc.n && return nothing
r = 0.
while true
r = rand()
if r > 0.5
break
else
sleep(r)
end
end
data = r
result = 1 - data
sleep(result)
return (data, state+1)
end
function straightforward(n, seed)
s = 0.
@showprogress for data in NaiveProducer(;n, seed)
result = 1 - data
sleep(result)
s += result
end
@show s
end
function main(n=50; seed=54321)
@info "doing $(nameof(straightforward))"
@time straightforward(n, seed)
end
main()
@terasakisatoshi
Copy link
Author

terasakisatoshi commented Oct 31, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment