Giter Club home page Giter Club logo

Comments (2)

alex-sherman avatar alex-sherman commented on May 29, 2024

That is from an older version deco, those two attributes have since gone away. I hope to create some documentation in the future, but for now here's how you would recreate that functionality.

Setting the number of processes
The number of processes/threads can be configured through the @concurrent constructor like so:

@concurrent(processes = 5)
def test():
    pass

In general, whatever you pass in to the constructor gets passed directly to the Poolor ThreadPoolconstructor which is documented more here.

Changing the process count
The first time the concurrent function gets called a Poolor ThreadPoolis created, so the process count is sort of finalized. The previous call to test.p = None was sort of a cheat to get the concurrent function to re-construct the pool. A way to do it now would be:

test.conc_kwargs["processes"] = 5
test.concurrency = None

Changing the process count after the concurrent function has been initialized is kind of expensive and not something I really thought of much, so this second functionality might later get wrapped up in a cleaner way.

Thanks for asking this question, let me know if something still isn't clear.

from deco.

rhaarm avatar rhaarm commented on May 29, 2024

Thanks, this was extremely helpful information.

from deco.

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.