Code Monkey home page Code Monkey logo

Comments (8)

max0x7ba avatar max0x7ba commented on May 18, 2024

The size of the queue gets round up to the next power of two with an extra constraint, see https://github.com/max0x7ba/atomic_queue/blob/master/include/atomic_queue/atomic_queue.h#L537

q.capacity() reports the actual capacity.

from atomic_queue.

pfeatherstone avatar pfeatherstone commented on May 18, 2024

So shouldn't it stop printing at 16 then ?

from atomic_queue.

max0x7ba avatar max0x7ba commented on May 18, 2024

... round up to the next power of two with an extra constraint.

from atomic_queue.

pfeatherstone avatar pfeatherstone commented on May 18, 2024

Oh sorry, capacity is 4096. That's quite a way off from desired size 10. Is there a reason to do this? Can't it just be set to what the user wants?

from atomic_queue.

max0x7ba avatar max0x7ba commented on May 18, 2024

I would suggest that user to consider AtomicQueue2 and always read the documentation first.

from atomic_queue.

pfeatherstone avatar pfeatherstone commented on May 18, 2024

What if the size isn't known at compile time ?

from atomic_queue.

max0x7ba avatar max0x7ba commented on May 18, 2024

The queue is designed for ultra-low-latency and important optimizations require using power-of-2 and also certain minimum capacity. These optimizations can be disabled for queue variants that don't use heap allocation but require capacity to be a compile time constant.

If the capacity isn't known at compile time then I would suggest the user to accept the minimum capacity imposed by AtomicQueueB2 implementation.

from atomic_queue.

pfeatherstone avatar pfeatherstone commented on May 18, 2024

Cheers thank you. The other problem for me is the way the queue spins when try_push fails. My apps sometimes have to wait for data. And spinning hogs all the CPU on the calling thread. So maybe a mutex/condvar based queue is best for me. Thanks for the comments though. I should have read the docs more carefully first.

from atomic_queue.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.