-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
improve work queue #10529
improve work queue #10529
Conversation
@@ -1,75 +1,192 @@ | |||
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the license block needs to stay
Can you try to add a test that exercises the concurrent aspect? |
It troubles me that there are 0 comments in this code. Concurrent data structures are hard enough before you add lock-free components to them. Can you please add some comments explaining what's going on and where? Additionally, the commit message "improve work queue" isn't very descriptive, can you expand that with a title and a description as to what was improved as well? |
As with the previous queues, I'm wary of having a "safe way to use these unsafely." I would much rather have a safe interface exposing the invariants of this queue. I quickly got tripped up over myself thinking that there were multiple pushers/poppers. This is an excellent candidate for a |
Oh, I forgot to mention, but do you have any numbers on this queue about how the performance looks? I'm wary of using a try lock to steal work because it seems like if work queues are under high contention no one will end up stealing anything when there's lots of work to steal. |
I agree using the type system to enforce correct usage is a good idea. I'm wary of changing too many things at once though so I'd like to do the API changes in another patch. I ran some benchmarks on a C++ version of this and the performance seemed good, and comparable to the Chase-Lev implementation I was working on which is why I decided to try it out. The test_steal test I added can be used to verify the balance of work between threads. I have a stand-alone version at https://github.com/toffaletti/rust-code/blob/master/work_queue.rs which you can run with
The test simulates work by doing a task::deschedule. I'd be interested in a better real-world test. In the past I tried using rust-http server and apache bench with different levels of concurrency, but it only utilizes a single core because of libuv+rust integration causing all IO to occur in a single thread. As an aside, I've found it rather cumbersome to develop things inside libstd. Which is why I have stand-alone versions so I can just Finally, I'll work on commenting the code and perhaps removing the mask magic, which is just a silly optimization a lot of these concurrent data structures backed by arrays use. If the size of the array is made to be a power of two, they can use |
Can you add benchmarks to the tests, or in src/test/bench? On Mon, Nov 18, 2013 at 5:01 PM, Jason Toffaletti
|
Closing now that #10678 has landed |
make [`len_zero`] lint not spanning over parenthesis sorry it should be a quick fix but I was caught up by other stuffs last couple weeks 🤦♂️ --- fixes: rust-lang#10529 changelog: make [`len_zero`] lint not spanning over parenthesis
Review request. Relates to #4877. Proposing this as a more conservative alternative to Chase-Lev until I figure out how to get array growth and memory reclamation working without a garbage collector.