Changes

Jump to: navigation, search

Kraken Info

408 bytes added, 23:14, 28 October 2010
audio-dft
== audio-dft ==
 
'''Description.'''
A ''kernel''. Computes a Discrete Fourier Transform.
 
'''Key features.'''
Most of run-time is in this loop:
 
for ( var n = 0; n < buffer.length; n++ ) {
real += this.cosTable[k*n] * buffer[n];
imag += this.sinTable[k*n] * buffer[n];
}
 
buffer.length is 2048. Property and array gets dominate.
 
'''Mozilla-specific things.'''
Execution is dominated by a single trace fragment.
== audio-fft ==
Confirm
1,345
edits

Navigation menu