From 9b0dcf4989806482610375eca4547059bb9b5063 Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Wed, 23 Jan 2019 10:21:25 -0800 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 748b9fb..d1e8978 100644 --- a/README.md +++ b/README.md @@ -28,16 +28,16 @@ Tengo is [fast](#benchmark) as it's compiled to bytecode and executed on stack-b | | fib(35) | fibt(35) | Type | | :--- | ---: | ---: | :---: | -| Go | `65ms` | `3ms` | Go (native) | -| [**Tengo**](https://github.com/d5/tengo) | `4,379ms` | `5ms` | VM on Go | -| Lua | `1,755ms` | `3ms` | Lua (native) | -| [go-lua](https://github.com/Shopify/go-lua) | `5,214ms` | `5ms` | Lua VM on Go | -| [GopherLua](https://github.com/yuin/gopher-lua) | `5,491ms` | `5ms` | Lua VM on Go | -| Python | `2,879ms` | `26ms` | Python (native) | -| [starlark-go](https://github.com/google/starlark-go) | `16,853ms` | `5ms` | Python-like Interpreter on Go | -| [gpython](https://github.com/go-python/gpython) | `18,662ms` | `5ms` | Python Interpreter on Go | -| [otto](https://github.com/robertkrimen/otto) | `88,561ms` | `14ms` | JS Interpreter on Go | -| [Anko](https://github.com/mattn/anko) | `107,720ms` | `16ms` | Interpreter on Go | +| Go | `58ms` | `3ms` | Go (native) | +| [**Tengo**](https://github.com/d5/tengo) | `4,245ms` | `5ms` | VM on Go | +| Lua | `1,739ms` | `3ms` | Lua (native) | +| [go-lua](https://github.com/Shopify/go-lua) | `5,368ms` | `5ms` | Lua VM on Go | +| [GopherLua](https://github.com/yuin/gopher-lua) | `5,408ms` | `5ms` | Lua VM on Go | +| Python | `3,176ms` | `27ms` | Python (native) | +| [starlark-go](https://github.com/google/starlark-go) | `15,400ms` | `5ms` | Python-like Interpreter on Go | +| [gpython](https://github.com/go-python/gpython) | `17,724ms` | `6ms` | Python Interpreter on Go | +| [otto](https://github.com/robertkrimen/otto) | `82,050ms` | `22ms` | JS Interpreter on Go | +| [Anko](https://github.com/mattn/anko) | `98,739ms` | `31ms` | Interpreter on Go | [fib(35)](https://github.com/d5/tengobench/blob/master/code/fib.tengo) is a function to compute 35th Fibonacci number, and, [fibt(35)](https://github.com/d5/tengobench/blob/master/code/fibtc.tengo) is the [tail-call](https://en.wikipedia.org/wiki/Tail_call) version of the same function.