Giter VIP home page Giter VIP logo

Comments (4)

rohitkulshreshtha avatar rohitkulshreshtha commented on July 17, 2024

Source available here

from hydroflow.

MingweiSamuel avatar MingweiSamuel commented on July 17, 2024

Option: require defer_tick() on all "backwards" edges (higher -> lower stratum number)

from hydroflow.

MingweiSamuel avatar MingweiSamuel commented on July 17, 2024

DelayType::Stratum => {
// Any negative edges which go onto the same or previous stratum are bad.
// Indicates an unbroken negative cycle.
if dst_stratum <= src_stratum {
return Err(Diagnostic::spanned(dst_port.span(), Level::Error, "Negative edge creates a negative cycle which must be broken with a `defer_tick()` operator."));
}
}

from hydroflow.

jhellerstein avatar jhellerstein commented on July 17, 2024

Current status: if we have a dataflow edge from a higher-numbered stratum to a lower one, the runtime effectively defers the dataflow until next tick. Unfortunately this hides correctness in our operational semantics and may be confusing for users.

Simple (inadequate) solution: require users to insert a defer_tick operator between the output of stratum x and the input of stratum k < x. The problem with this solution is that they may have a defer_tick elsewhere in the cycle (say from k+i to k+i+1) that already enforces the desired semantics.

Ideal solution: any cycle that spans two strata should be tested for having a defer_tick anywhere along that cycle. Errors should be omitted only when there is no defer_tick on the cycle. It makes sense to suggest that the defer_tick be inserted on the dataflow edge that goes from a higher stratum to a lower one.

from hydroflow.

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.