Closed
Bug 603837
Opened 14 years ago
Closed 9 years ago
Kraken: audio-beat-detection and audio-fft are quite similar
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: n.nethercote, Unassigned)
References
Details
FWIW, audio-fft and audio-beat-detection are almost the same benchmark.
For example, they both spend roughly 50% of their time in the loop that begins
on line 334 of audio-{beat-detection,fft}.js. Other hot loops look very
similar, eg. those on lines 153, 331, 309.
This isn't surprising when you realize that the lines 2--1918 of
audio-{beat-detection,fft}-data.js are identical. audio-beat-detection is just
audio-fft with a tiny big of extra stuff at the end (about 2% of the runtime).
There's a strong case to be made for removing one of the tests. Alternatively, beat-detection should get a different data set, one that make the extra bit at the end much more important.
Reporter | ||
Comment 1•14 years ago
|
||
Hmm, they might not be quite as similar as I thought. With bug 599914 fixed, the runtimes on my MacBook Pro are:
- audio-fft: 380ms
- audio-beat-detection: 578ms
There's still a lot of overlap, though.
Reporter | ||
Updated•14 years ago
|
Summary: Kraken: audio-beat-detection and audio-fft are almost identical → Kraken: audio-beat-detection and audio-fft are quite similar
Reporter | ||
Updated•14 years ago
|
Assignee: nnethercote → general
Assignee | ||
Updated•10 years ago
|
Assignee: general → nobody
Reporter | ||
Comment 2•9 years ago
|
||
Kraken is fading away. I don't think this needs to be open any more.
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
Resolution: --- → INCOMPLETE
Reporter | ||
Updated•9 years ago
|
Resolution: INCOMPLETE → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•