raw vs function vs Flow (v3)

Revision 3 of this benchmark created by Bemi Faison on


Description

Flow is an execution framework.

This test demonstrates how slow Flow (version 0.3.X) is compared to raw and invoked executions

More on Flow, at https://github.com/bemson/Flow

Preparation HTML

<script src="https://github.com/bemson/Flow/raw/master/flow-min.js"></script>

Setup

function SumFnc(x, y) {
      return x + y;
    }
    
    SumFlow = (new Flow(SumFnc)).map();

Test runner

Ready to run.

Testing in
TestOps/sec
Raw
5 + 5
ready
Function
SumFnc(5, 5);
ready
Flow
SumFlow(5, 5);
 
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.

  • Revision 1: published by Bemi Faison on
  • Revision 3: published by Bemi Faison on