From c24e014b0f730cde445f77969f9eed5454791f33 Mon Sep 17 00:00:00 2001 From: Seth Thompson Date: Mon, 17 Aug 2015 15:54:46 -0700 Subject: [PATCH 1/6] add README.md and other docs --- CHANGELOG.md | 15 +++++++++++++++ CONTRIBUTING.md | 31 +++++++++++++++++++++++++++++++ LICENSE | 27 +++++++++++++++++++++++++++ README.md | 9 +++++++++ 4 files changed, 82 insertions(+) create mode 100644 CHANGELOG.md create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE create mode 100644 README.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7cc5318 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +#History + +##11/6/2013 - Octane 2.0 + +This update adds latency and asm.js-like tests to the Octane benchmark suite. + +Octane 2.0 brings focus on new aspects of JS performance: latency and asm.js-like code. By instrumenting Splay and Mandreel, it is now possible to calculate scores for compiler and garbage collection latencies. the [zlib](https://github.com/kripken/emscripten/tree/master/tests/zlib) benchmark from the [Emscripten](https://github.com/kripken/emscripten) test suite is also included to keep track of this new technology. Finally, the [Typescript](http://www.typescriptlang.org/) compiler from Microsoft, which is run exactly once, measures startup and execution of a very complex javascript application. + +##8/21/2012 - Octane v.1 + +Welcome to the first release of Octane! + +Octane builds upon the V8 Benchmark Suite and adds five new tests, taken without modification (beside glue / boilerplate logic) from well known, existing Web and JS applications: Mozilla's pdf.js, Mandreel, GB Emulator, CodeLoad, Box2DWeb. + +Have a look at the official Chromium [blog post](http://blog.chromium.org/2012/08/octane-javascript-benchmark-suite-for.html) for more details or check the [benchmark page](https://developers.google.com/octane/benchmark) for a detailed explanation of each test. If you are still looking for answers, the [FAQ page](https://developers.google.com/octane/faq) might help you. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..ee66d16 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,31 @@ +Want to contribute? Great! First, read this page (including the small print at the end). + +### Intro +If you care about the performance of real-world JavaScript and you'd like to help us make Octane even more representative of what needs to be fast on the web, we'd love your help! + +If you think Octane's performance test coverage doesn't cover something important and you identified an open source JavaScript application that could cover the gap, then send it our way by [filing an issue](https://github.com/chromium/octane/issues) and we might consider it for a future update of Octane. + +As a rule of thumb, the application should be decomposed in an initialization phase, a function that performs a "step" of calculation and that will be called in a tight loop, and a cleanup function. The "step" function shall not be too long , ideally in the tens/hundred ms range. The code from initialization to cleanup is then called a minimum of up to 32 times and the time spent averaged. Ideally we try to keep each test reasonably fast, in the order of few seconds. + +### Before you contribute +Before we can use your code, you must sign the +[Google Individual Contributor License Agreement](https://developers.google.com/open-source/cla/individual?csw=1) +(CLA), which you can do online. The CLA is necessary mainly because you own the +copyright to your changes, even after your contribution becomes part of our +codebase, so we need your permission to use and distribute your code. We also +need to be sure of various other things—for instance that you'll tell us if you +know that your code infringes on other people's patents. You don't have to sign +the CLA until after you've submitted your code for review and a member has +approved it, but you must do it before we can put your code into our codebase. +Before you start working on a larger contribution, you should get in touch with +us first through the issue tracker with your idea so that we can help out and +possibly guide you. Coordinating up front makes it much easier to avoid +frustration later on. + +### Code reviews +All submissions, including submissions by project members, require review. We +use Github pull requests for this purpose. + +### The small print +Contributions made by corporations are covered by a different agreement than +the one above, the Software Grant and Corporate Contributor License Agreement. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b7ba9a0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2013, the V8 project authors (http://code.google.com/p/v8/) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of Google, Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..2f2868b --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Octane + +> The JavaScript benchmark that evolves with the Web. + +Octane 2 is a modern benchmark that measures a JavaScript engine’s performance by running a suite of tests representative of today’s complex and demanding web applications. Octane‘s goal is to measure the performance of JavaScript code found in large, real-world web applications, running on modern mobile and desktop browsers. + +[Run Octane 2 now!](http://chromium.github.io/octane/) + +For more information, check out the [homepage](https://developers.google.com/octane/), [benchmark reference](https://developers.google.com/octane/benchmark), or [FAQ](https://developers.google.com/octane/faq). From 62e6627a456cd0accdea71652f4b371160c35cd1 Mon Sep 17 00:00:00 2001 From: Milosz Wasilewski Date: Wed, 31 Aug 2016 13:41:40 +0100 Subject: [PATCH 2/6] index.html: fixed box for Richards benchmark All other benchmark boxes report their results in 'p' tag. Richards was reported in 'span'. This patch aligns tag naming convention for all boxes to 'p'. Signed-off-by: Milosz Wasilewski --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 77cbdfb..e306eb9 100644 --- a/index.html +++ b/index.html @@ -203,7 +203,7 @@

Start Octane 2.0

Richards - ... +

...

Core language features From d996acda567bc8f3d4f3b17ec7e4ede90914e3d4 Mon Sep 17 00:00:00 2001 From: Michael Hablich Date: Fri, 9 Sep 2016 10:45:46 +0200 Subject: [PATCH 3/6] Revert "index.html: fixed box for Richards benchmark" --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index e306eb9..77cbdfb 100644 --- a/index.html +++ b/index.html @@ -203,7 +203,7 @@

Start Octane 2.0

Richards -

...

+ ... Core language features From 7a9342a4273325135098e8420463396eb73ba360 Mon Sep 17 00:00:00 2001 From: Michael Hablich Date: Wed, 14 Sep 2016 22:56:16 +0200 Subject: [PATCH 4/6] Revert "Revert "index.html: fixed box for Richards benchmark"" --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 77cbdfb..e306eb9 100644 --- a/index.html +++ b/index.html @@ -203,7 +203,7 @@

Start Octane 2.0

Richards - ... +

...

Core language features From 30b1d8d71406b2c12f1ba6bf545733be772af086 Mon Sep 17 00:00:00 2001 From: Michael Hablich Date: Thu, 22 Dec 2016 20:09:47 +0100 Subject: [PATCH 5/6] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 2f2868b..9c5c963 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # Octane -> The JavaScript benchmark that evolves with the Web. - -Octane 2 is a modern benchmark that measures a JavaScript engine’s performance by running a suite of tests representative of today’s complex and demanding web applications. Octane‘s goal is to measure the performance of JavaScript code found in large, real-world web applications, running on modern mobile and desktop browsers. +Octane 2.0 is a benchmark that measures a JavaScript engine’s performance by running a suite of tests representative of certain use cases in JavaScript applications. [Run Octane 2 now!](http://chromium.github.io/octane/) From 570ad1ccfe86e3eecba0636c8f932ac08edec517 Mon Sep 17 00:00:00 2001 From: Michael Hablich Date: Wed, 12 Apr 2017 19:47:40 +0200 Subject: [PATCH 6/6] Update files for Octane retirement (#46) * Update README.md for Octane retirement * Update README.md * Update index.html for Octane retirement --- README.md | 2 ++ index.html | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9c5c963..0c51bd2 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ Octane 2.0 is a benchmark that measures a JavaScript engine’s performance by running a suite of tests representative of certain use cases in JavaScript applications. +Please note that [Octane is retired](https://v8project.blogspot.com/2017/04/retiring-octane.html) and no longer maintained. + [Run Octane 2 now!](http://chromium.github.io/octane/) For more information, check out the [homepage](https://developers.google.com/octane/), [benchmark reference](https://developers.google.com/octane/benchmark), or [FAQ](https://developers.google.com/octane/faq). diff --git a/index.html b/index.html index e306eb9..01fece7 100644 --- a/index.html +++ b/index.html @@ -188,9 +188,9 @@

Start Octane 2.0

- Welcome to Octane 2.0, a JavaScript benchmark for the modern web. For more accurate results, start the browser anew before running the test. + Please note that Octane is retired and no longer maintained. For more accurate results, start the browser anew before running the test.

- What's new in Octane 2.0 - Documentation - Run Octane v1 + Documentation - Run Octane v1