igouy
igouy
Various ways which seem to give similar times for the toit programs. `$ time /opt/src/toit/bin/toit.run mandelbrot.toit 16000` After removing the `out.write byte-acc` [Like this](https://benchmarksgame-team.pages.debian.net/benchmarksgame/how-programs-are-measured.html) for the first measurement which has...
I look forward to seeing how that works out.
I see ``` $ ./toit142/bin/toit.compile -O2 --strip -o nbody142 nbody.toit $ hyperfine "./nbody142 500000" Benchmark 1: ./nbody142 500000 Time (mean ± σ): 11.945 s ± 0.237 s [User: 11.810 s,...
Whatever the max performance / lowest memory use options might be.
github doesn't seem to allow html attachments, so: [python3-toit.zip](https://github.com/toitlang/toit/files/14776932/python3-toit.zip) 1. Seems like I did a very poor job of naive k-nucleotide in Toit, which I'll remove. 2. Is there anything...
> isn't efficient One integer will be read, once. How "efficient" does that need to be?
Seems OK iirc the product manager asked me to use exe as default instead of jit
https://v8.dev/blog/jitless I don't pretend to understand `--jitless` and `--no-opt`
benchmarks game uses PHP compile from source, configured with `--enable-opcache`
Here's a **too simple** loop — https://benchmarksgame-team.pages.debian.net/benchmarksgame/performance/toosimple.html Notice that swapping the order of two statements can have a dramatic impact. Notice that using global vars vs local vars can have...