Git Product home page Git Product logo

Comments (7)

cuviper avatar cuviper commented on July 16, 2024 1

First thing in join is to check if it's being called from outside the thread pool, and then it has to inject both closures, right? So I think a half-send version would have to be a separate call.

from rayon.

nikomatsakis avatar nikomatsakis commented on July 16, 2024

@cuviper ah, true. Good point.

from rayon.

nikomatsakis avatar nikomatsakis commented on July 16, 2024

Meh. Not worth it, I don't think.

from rayon.

nikomatsakis avatar nikomatsakis commented on July 16, 2024

OK, I decided to reopen, but changed the title. It seems like there might be some use for this. The idea would be that sometimes you want to do work on the "main" thread while also doing parallel processing in parallel. Use case is the SDL-based visualizer in the nbody demo, where it'd be nice to assemble the frame in parallel with computing the next one. You can certainly do this with Rayon's existing join, but I think one is only supposed to do certain tasks from the "main" thread. Another use case would be anything that requires thread-local data.

But I agree with @cuviper that this seems to be a distinct thing from the simple join, so maybe it would require a separate function. Or maybe we can rework join so that it's fine there. I don't know, but I'm going to leave it open as something to think about as a future enhancement.

from rayon.

cuviper avatar cuviper commented on July 16, 2024

from rayon.

nikomatsakis avatar nikomatsakis commented on July 16, 2024

@cuviper yes, but it would need a join scope of some kind in order to access borrowed data. So basically you could imagine adding an API like:

join_scope(|scope| {
    scope.fork(|| ...); // can call as many times as you want
});

// forked things are done now

Behind the scenes, this would need some sort of Vec to keep track of all the things you forked.

from rayon.

nikomatsakis avatar nikomatsakis commented on July 16, 2024

I think I'm just going to close this. It might be handy, but ... meh. We have scope now and I think concerning ourselves with Send things is probably ok for the most part.

from rayon.

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.