zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit e0b6161d95263cb41c1a9beab95f903041b9e0f4
parent bce29e8601f1f06f2f1ac6c2cdb760776b8154c2
Author: fundamental <[email protected]>
Date:   Thu, 11 Aug 2011 17:22:39 -0400

OscilGen: Testing speed

- Adding basic tests for get() and prepare() to look for regressions

Diffstat:
Msrc/Tests/OscilGenTest.h | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/src/Tests/OscilGenTest.h b/src/Tests/OscilGenTest.h @@ -91,4 +91,25 @@ class OscilGenTest:public CxxTest::TestSuite TS_ASSERT_DELTA(outR[47], 0.003425, 0.0001); TS_ASSERT_DELTA(outR[65], 0.001293, 0.0001); } + + //performance testing + void testSpeed() { + const int samps = 15000; + + int t_on = clock(); // timer before calling func + for(int i = 0; i < samps; ++i) + oscil->prepare(); + int t_off = clock(); // timer when func returns + + printf("OscilGenTest: %f seconds for %d prepares.\n", + (static_cast<float>(t_off - t_on)) / CLOCKS_PER_SEC, samps); + + t_on = clock(); // timer before calling func + for(int i = 0; i < samps; ++i) + oscil->get(outL, freq); + t_off = clock(); // timer when func returns + + printf("OscilGenTest: %f seconds for %d gets.\n", + (static_cast<float>(t_off - t_on)) / CLOCKS_PER_SEC, samps); + } };