1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/parjs-benchmarks/README.txt Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +# Parallel JS Benchmarks 1.5 + 1.6 +This is a preliminary benchmark suite for Parallel JS. Each test is 1.7 +intended to test various aspects of the engine, as described below. 1.8 +The set of tests is very preliminary and is expected to grow and 1.9 +eventually include more real-world examples. 1.10 + 1.11 +To run the tests, do something like: 1.12 + 1.13 + parjs-benchmarks/run.sh build-opt/js parjs-benchmarks/*.js 1.14 + 1.15 +Where `build-opt/js` is the path to your shell. 1.16 + 1.17 +# The tests 1.18 + 1.19 +- Mandelbrot: A test of embarassingly parallel arithmetic. Exercises 1.20 + the comprehension form of 2D parallel arrays. 1.21 +- Allocator: A test of parallel allocation.