Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
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. |