summaryrefslogtreecommitdiff
path: root/benchmark/arrays/zero_float.js
blob: bdb8765d0a4241774bfbba406c996751ca83afac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var types = 'Array Buffer Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array'.split(' ');

var type = types[types.indexOf(process.argv[2])];
if (!type)
  type = types[0];

console.error('Benchmarking', type);
var clazz = global[type];

var arr = new clazz(25 * 10e5);
for (var i = 0; i < 10; ++i) {
  for (var j = 0, k = arr.length; j < k; ++j) {
    arr[j] = 0.0;
  }
}