[Csnd] 'mode' performance
Date | 2012-01-17 19:51 |
From | Aaron Krister Johnson |
Subject | [Csnd] 'mode' performance |
Hi all, I'm wondering if anyone else is experiencing maddening xruns when using the McCurdy 'mode' example from his realtime collection. 'Mode' is a great-sounding instrument, and has many possibilities, but at least on my little EEE-PC running Arch Linux and jackd, doesn't seem real-time ready, because of lots and lots of crackly xruns whenever the MIDI activity gets at all remotely intense... I've tried all the usual suspects (buffer size, sample rate reduction, ksmps increase) to no avail...is it just that 'mode' is particularly inefficient, or very CPU hungry? Could htere be a bad bug in the code that is causing this issue? Best, Aaron Krister Johnson http://www.akjmusic.com http://www.untwelve.org Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" |
Date | 2012-01-18 10:36 |
From | Iain McCurdy |
Subject | RE: [Csnd] 'mode' performance |
Attachments | modeUDOs.csd |
Hi Aaron, Here are stripped down UDO versions of the mode instruments that remove most of the paraphernalia of the original example. They might provide a more useful and efficient starting point. You could try and replace mode with reson and see if that is more efficient, I suspect it may be similar in performance terms though. There may just be a limit to how much resource saving can be achieved on a netbook. I notice also that Native Instruments has a product that implements modal synthesis. It might be intestesting to see how effectively it performs in realtime, I don't have it to try though. Bye, Iain > Date: Tue, 17 Jan 2012 13:51:04 -0600 > From: aaron@akjmusic.com > To: csound@lists.bath.ac.uk > Subject: [Csnd] 'mode' performance > > Hi all, > > I'm wondering if anyone else is experiencing maddening xruns when > using the McCurdy 'mode' example from his realtime collection. 'Mode' > is a great-sounding instrument, and has many possibilities, but at > least on my little EEE-PC running Arch Linux and jackd, doesn't seem > real-time ready, because of lots and lots of crackly xruns whenever > the MIDI activity gets at all remotely intense... > > I've tried all the usual suspects (buffer size, sample rate reduction, > ksmps increase) to no avail...is it just that 'mode' is particularly > inefficient, or very CPU hungry? Could htere be a bad bug in the code > that is causing this issue? > > Best, > Aaron Krister Johnson > http://www.akjmusic.com > http://www.untwelve.org > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound" > |
Date | 2012-01-18 20:58 |
From | Stefan Thomas |
Subject | Re: [Csnd] 'mode' performance |
Dear Iain, Your code works fine on my Ubuntu-machine, no problem till now with live-midi. But I have a question for the mode-opcode itself. Can it be thought as a kind of additive-synthesis generator? Is it something similar to this? 2012/1/18 Iain McCurdy <i_mccurdy@hotmail.com>
|
Date | 2012-01-19 14:02 |
From | Iain McCurdy |
Subject | RE: [Csnd] 'mode' performance |
Hi Stefan, mode is a bandpass filter which, as 'q' is increased, resonates in a manner that makes it useful for synthesis. It's not really a sound generator as it requires a signal of excitation. The mode resonators are layered in a fashion similar to that used in additive synthesis but we aren't normally controlling the envelope of each partial and each partial is not neccessarily a pure sine tone, instead we consider the nature of the exciter and the nature of the resonator. It lends itself to the sythesis of bells, wooden and metal bars being struck, rubbed, bowed, blown, shouted into etc. Bye, Iain Date: Wed, 18 Jan 2012 21:58:06 +0100 From: kontrapunktstefan@googlemail.com To: csound@lists.bath.ac.uk Subject: Re: [Csnd] 'mode' performance Dear Iain, Your code works fine on my Ubuntu-machine, no problem till now with live-midi. But I have a question for the mode-opcode itself. Can it be thought as a kind of additive-synthesis generator? Is it something similar to this? 2012/1/18 Iain McCurdy <i_mccurdy@hotmail.com>
|
Date | 2012-01-20 17:16 |
From | Steven Yi |
Subject | Re: [Csnd] 'mode' performance |
Interesting, with the new parser I get a message: Too many file/macros (compiled csound a few days ago, not sure if this has been fixed) Regarding mode, it's essentially a biquad filter that has had some parts optimized out. I've taken a look at the Native Instruments Prism instrument and its quite nice. I was building a recursive mode UDO instrument a couple months ago but have been sidetracked since; hopefully will get back to it in a week from now. Question though for the community, does anyone have any code for bowing excitation? I've used vco2 with a saw wave in the past as an simple approximation but would rather have something more genuine in terms of physical modeling. Thanks! steven On Wed, Jan 18, 2012 at 5:36 AM, Iain McCurdy |