diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-02-06 14:47:55 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-06 14:47:55 -0800 |
commit | a34e8338aa0d385cc0bcd05e4047db79752b67f7 (patch) | |
tree | 5c978ecb651fe1d0f6cfb8374e64155286b23263 | |
parent | 4fd6da423bf6eb8aff0b9709793b730b569f13e2 (diff) |
use Math.imul in benchmarks
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 48af246e..975a2ace 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -10818,7 +10818,7 @@ elif 'benchmark' in str(sys.argv): try_delete(final_filename) output = Popen([PYTHON, EMCC, filename, #'-O3', '-O2', '-s', 'INLINING_LIMIT=0', '-s', 'DOUBLE_MODE=0', '-s', 'PRECISE_I64_MATH=0', - '-s', 'ASM_JS=1',# '-s', 'USE_MATH_IMUL=1', + '-s', 'ASM_JS=1', '-s', 'USE_MATH_IMUL=1', '-s', 'TOTAL_MEMORY=128*1024*1024', '-s', 'FAST_MEMORY=10*1024*1024', '-o', final_filename] + shared_args + emcc_args, stdout=PIPE, stderr=self.stderr_redirect).communicate() assert os.path.exists(final_filename), 'Failed to compile file: ' + output[0] |