test

Benchmark created on


Preparation HTML

<script>
  acc = 30;
  omega = 0.95;
  ofs = 500;
  velo = 100;
  deltaTime = 5000;
  
  theta = Math.log(omega);
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
test1
var ff = Math.pow(omega, deltaTime / acc);
ready
new
var ff = Math.exp(deltaTime / acc * theta);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.