Update n-body sources and binary for rust. Add bench results (#172)

This commit is contained in:
Max Graey
2018-07-21 15:11:39 +03:00
committed by Daniel Wirtz
parent 00fb45fcad
commit 813d2e33c8
15 changed files with 704 additions and 779 deletions

View File

@ -7,6 +7,7 @@ const compiled = new WebAssembly.Module(
const imports = {
env: {
memory: new WebAssembly.Memory({ initial: 10 }),
abort: (filename, line, column) => {
throw Error("abort called at " + line + ":" + colum);
}