Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | # Parallel JS Benchmarks |
michael@0 | 2 | |
michael@0 | 3 | This is a preliminary benchmark suite for Parallel JS. Each test is |
michael@0 | 4 | intended to test various aspects of the engine, as described below. |
michael@0 | 5 | The set of tests is very preliminary and is expected to grow and |
michael@0 | 6 | eventually include more real-world examples. |
michael@0 | 7 | |
michael@0 | 8 | To run the tests, do something like: |
michael@0 | 9 | |
michael@0 | 10 | parjs-benchmarks/run.sh build-opt/js parjs-benchmarks/*.js |
michael@0 | 11 | |
michael@0 | 12 | Where `build-opt/js` is the path to your shell. |
michael@0 | 13 | |
michael@0 | 14 | # The tests |
michael@0 | 15 | |
michael@0 | 16 | - Mandelbrot: A test of embarassingly parallel arithmetic. Exercises |
michael@0 | 17 | the comprehension form of 2D parallel arrays. |
michael@0 | 18 | - Allocator: A test of parallel allocation. |