Skip to content

Repo for comparing implementations of workstealing queues with julia

License

Notifications You must be signed in to change notification settings

gbaraldi/WorkstealingQueues.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WorkstealingQueues.jl

Repo for comparing implementations of workstealing queues with julia

The expected interface for a queue is Queue{T}() for instantiation, push!(q::Queue{T}, x::T) for pushing an element to the queue, steal!(q::Queue{T})::T for popping an element from the back of the queue, steal! needs to be safe to be called from multiple threads while pop! only needs to be correct for the thread that owns the queue. Also isempty(q::Queue{T})::Bool for checking if the queue is empty.

About

Repo for comparing implementations of workstealing queues with julia

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages