diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-02-25 22:33:13 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-25 22:33:13 -0500 |
commit | f6a2a7b8936a4054ac781af6eeb4e9dd5466a775 (patch) | |
tree | 3b8cbd8bb92b87a0e34733dc9f54134318172037 /tests/runner.py | |
parent | 5c686b0bdb9a0d858cd0765a48a21589caab5fd4 (diff) |
adjust chunk sizes to better handle large numbers of cores and large amounts of forwarded data
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 96a2dabd..f4bb327e 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -9446,8 +9446,8 @@ f.close() try: os.environ['EMCC_DEBUG'] = '1' for asm, linkable, chunks, js_chunks in [ - (0, 0, 3, 2), (0, 1, 7, 4), - (1, 0, 3, 2), (1, 1, 7, 5) + (0, 0, 2, 2), (0, 1, 5, 4), + (1, 0, 2, 2), (1, 1, 5, 5) ]: print asm, linkable, chunks, js_chunks output, err = Popen([PYTHON, EMCC, path_from_root('tests', 'hello_libcxx.cpp'), '-O1', '-s', 'LINKABLE=%d' % linkable, '-s', 'ASM_JS=%d' % asm], stdout=PIPE, stderr=PIPE).communicate() |