Simplex Noise (v5)

Revision 5 of this benchmark created by Amar Shah on


Description

Fixed script URL.

Preparation HTML

<script src="https://rawgit.com/jwagner/simplex-noise.js/master/simplex-noise.js"></script>

Setup

simplex = new SimplexNoise();

Test runner

Ready to run.

Testing in
TestOps/sec
3D
a = 0;
for(var x = 0; x < 32; x++){
  for(var y = 0; y < 32; y++){
    for(var z = 0; z < 32; z++){
      a += simplex.noise3D(x/8, y/8, z/8);
    }
  }
}
ready
2D
a = 0;
for(var x = 0; x < 32; x++){
  for(var y = 0; y < 32; y++){
    for(var z = 0; z < 32; z++){
      a += simplex.noise2D(x/8, y/8);
    }
  }
}
ready

Revisions

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