Code Monkey home page Code Monkey logo

Comments (3)

jrevels avatar jrevels commented on August 16, 2024

So after thinking about this for a bit (I actually discovered it yesterday), and drawing on a little bit of experience from JuliaDiff/ForwardDiff.jl#83, I think the safest and most tenable approach is to simply not apply the unsafe optimizations by default, and instead provide users an @optdiff macro (or something) which can be used to assert that it is safe to perform an AD optimization based on context.

Note that it really would have to be an unchecked user-assertion; I don't think you can adequately check for function purity at macro-time (well, maybe you could, but it would probably be really messy/fragile). If Julia ever gets better support for introspecting function purity (an ispure trait or something), we might enable the optimization for pure functions automatically.

Anyway, requiring a directive isn't the most elegant solution, but it would at least solve the problem and still allow users to access the optimization.

from reversediff.jl.

mlubin avatar mlubin commented on August 16, 2024

What are the unsafe optimizations?

from reversediff.jl.

jrevels avatar jrevels commented on August 16, 2024

What are the unsafe optimizations?

See here.

We overload map/broadcast for AbstractArray{T <: TraceReal} so that we can skip writing a bunch of nodes to the tape. Instead, we get the derivatives in the forward pass using arrays of Duals, and store the whole map/broadcast operation as a single "bulk" node (whose reverse pass behavior is defined here).

This optimization is unsafe if the function passed to map/broadcast closes over TraceReals, because those TraceReals will then unexpectedly write operations to the tape, where the optimization assumes that it's skipping though operations.

Unfortunately, like perturbation confusion, it's probably not transparent for a user to predict when this kind of thing will happen. It's also hard to detect automatically, so we can't reliably warn users either.

from reversediff.jl.

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.