You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
1001 B

if (typeof print !== 'function') { print = console.log; }
function test() {
var tmp1 = [];
var tmp2 = [];
var i, n, buf;
print('build');
buf = new Uint8Array(1024);
for (i = 0; i < 1024; i++) {
buf[i] = Math.random() * 128; // restrict to ASCII
}
tmp1 = new TextDecoder().decode(buf);
print(tmp1.length);
for (i = 0; i < 1024; i++) {
tmp2.push(tmp1);
}
tmp2 = new TextEncoder().encode(tmp2.join(''));
print(tmp2.length);
print('run');
var t1 = Date.now();
var loopCount = 2000;
for (i = 0; i < loopCount; i++) {
// Assigning to 'res' avoids garbage collection of result; this is
// intentional to avoid mixing string intern performance to the test.
var res = Duktape.enc('base64', tmp2);
}
var t2 = Date.now();
print(((tmp2.length * loopCount) / (1024 * 1024)) / (t2 - t1) + ' megabytes/millisecond');
}
try {
test();
} catch (e) {
print(e.stack || e);
throw e;
}