Git Product home page Git Product logo

Comments (6)

nikomatsakis avatar nikomatsakis commented on August 15, 2024

Yes, I put no effort into error handling at the moment. I was debating between using catch_panic (or whatever we call it now) versus trying to stay on stable Rust.

from rayon.

nikomatsakis avatar nikomatsakis commented on August 15, 2024

The other place that panic handling is totally wrong is in the parallel iterator stuff, which fails to drop partially completed results (though technically that is not illegal).

from rayon.

nikomatsakis avatar nikomatsakis commented on August 15, 2024

So basically the "stable Rust" option I was debating about would be similar to what you suggest -- use poisoning to poison latches as we unwind, and then have the top-level code bring up another thread to replace the one that was torn down (or perhaps just tear them all down and start things back up). But I'd like to have some notion of how targeted the propagation is -- the strategy I just described seems like a panic in one place could randomly affect other workers.

from rayon.

cuviper avatar cuviper commented on August 15, 2024

With stealing, a thread's unwind stack could even have a mix of completely distinct jobs, right? I'm not sure there's really any reasonable panic recovery in that case. I'm only hoping for naive panic propagation as a base case -- let the whole process die rather than hang.

from rayon.

Amanieu avatar Amanieu commented on August 15, 2024

There is a pretty sensible solution to this, which is to catch any panics that occurs while executing a job, send the Box back to the caller of join(), and then re-throw the panic there. This effectively makes the result type of a job Result<T, Box<Any>>. However this requires panic::recover, which isn't stable, and panic::propagate, which hasn't landed yet (rust-lang/rust#30557).

from rayon.

nikomatsakis avatar nikomatsakis commented on August 15, 2024

@Amanieu yeah, the main question is whether to just make rayon rely on panic::recover (and hence require nightly), or not. I think I'd rather just do something sensible, as @cuviper suggests, and adopt recover later when things have stabilized (or perhaps under #[cfg(nightly)] switch).

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.