Giter Club home page Giter Club logo

dataflow-cpp's Introduction

dataflow-cpp

Prototype dataflow programming with C++

Dataflow graph is built of computational nodes. Each node can have inputs and outputs.

Simplest example:

df::Graph g;

// Data nodes
auto& a = g.variable<float>(1.0f);
auto& b = g.variable<float>(2.0f);
auto& c = g.variable<float>(3.0f);

// Build (a + b) * c graph
auto& add = g.add<float>();
auto& mul = g.mul<float>();

// Connect nodes
a >> add.in<0>();
b >> add.in<1>();
add.out<0>() >> mul.in<0>();
c >> mul.in<1>();

// Capture output, which holds the result
auto &out = mul.out<0>();

// Evaluate graph
g.evaluate();
std::cout << "Result: " << out() << "\n";

Creating a custom node:

// Compute maximum value of two integers
class Max : public df::Node,
            public df::Inputs<int, int>,
            public df::Outputs<int>
{
public:

    Max(df::Graph &g)
        : Node(g)
    {}

    void evaluate() override
    {
        out<0>() = std::max(inValue<0>(), inValue<1>());
    }

};

// Usage
void example()
{
    df::Graph g;

    auto& a = g.variable<int>(10);
    auto& b = g.variable<int>(20);

    auto& max = g.node<Max>();

    a >> max.in<0>();
    b >> max.in<1>();

    g.evaluate();
    std::cout << "Maximum value: " << max.outValue<0>() << "\n";
}

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.