[PD] freeverb crashes on new computer

2011-09-07 Thread ronni montoya
Hi, im trying to run old patches on my new computer but freeverb~ always crashes , from time to time it stop doing sound and i get nan if i conect an env~ object after it. ive tried putting a clip~ -1 1 before freeverb~ but its still crashing Do anybody have an idea why is this behaivor and how

[PD] [OT] SSE/MMX tips?

2011-09-07 Thread Bill Gribble
I am trying to code a simple operation using SSE2 instructions where possible. I have a feeling that what I want to do is just a matter of a couple of shufps and haddps instructions but I can't get it. Lazyweb please help! The operation is integration. I have a vector of 4 single floats (v4sf)

[PD] family affairs

2011-09-07 Thread adam sanches
Hello list, im trying to use the patch Frank posted some years ago in the list about parent- child relation with sliders. The idea is that with the parent slider you control the child values, but rather than just setting the child to the parents value the patch add the parents value in the

Re: [PD] [OT] SSE/MMX tips?

2011-09-07 Thread Mathieu Bouchard
On Wed, 7 Sep 2011, Bill Gribble wrote: So far iteration on plain floats seems to be the best I can come up with, but HADDPS is tantalizingly close to what I want to do. Any hints? Once I thought that with some commutativity you could speed things up like this :

Re: [PD] freeverb crashes on new computer

2011-09-07 Thread Mathieu Bouchard
On Tue, 6 Sep 2011, ronni montoya wrote: Hi, im trying to run old patches on my new computer but freeverb~ always crashes , from time to time it stop doing sound and i get nan if i conect an env~ object after it. AFAIK, if you get nan out of [env~], it's because there's at least one nan per

[PD] exporting text file and formatting question

2011-09-07 Thread Rick T
Greetings all I would like to export data to a text file every time the metro is banged with the format MMDDhhmmss, float, float, float I can create the data but the questions I have 1) I keep getting a write failed. 2) how can I get the commas between the values? 3) is there a way to do

Re: [PD] freeverb crashes on new computer

2011-09-07 Thread Claude Heiland-Allen
On 07/09/11 15:23, Mathieu Bouchard wrote: On Tue, 6 Sep 2011, ronni montoya wrote: Do anybody have an idea why is this behaivor and how to solve it? nan is often due to trying to do 0/0 or log(-1) or other out-of-range things. Probably inf - inf or 0 * inf are NaN, I haven't checked the

Re: [PD] [OT] SSE/MMX tips?

2011-09-07 Thread Claude Heiland-Allen
On 07/09/11 12:17, Bill Gribble wrote: The operation is integration. Try calling it 'scan' and you might end up with more productive searches, at least to my mind integration is more about summing over continuous regions than something discrete like this. Searching for data parallel

Re: [PD] [OT] SSE/MMX tips?

2011-09-07 Thread Bill Gribble
Ah! Thanks. Apparently also called prefix sum. Thanks, Bill Gribble On Wed, 2011-09-07 at 16:21 +0100, Claude Heiland-Allen wrote: On 07/09/11 12:17, Bill Gribble wrote: The operation is integration. Try calling it 'scan' and you might end up with more productive searches, at least

[PD] Problem with msgfile in zexy

2011-09-07 Thread Jack
Hello, I have a problem with [msgfile]. When i send [add2 1 2 3 4( to [msgfile], Pd crash. This on Ubuntu 11.04, Pd 0.42.6 and Zexy 2.2.3. ++ Jack ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -

Re: [PD] exporting text file and formatting question

2011-09-07 Thread Marco Donnarumma
Hi Rick, your patch won't work. There are several wrong idioms, please take a look at the help file of [textfile]. The idea is you write each single line with the [add ( message and eventually write the whole text to a .txt file. The [print ( message in your patch is not needed. Also be careful

Re: [PD] (breaking symbols) was Re: find a list of numbers in a text file

2011-09-07 Thread Hans-Christoph Steiner
On Sep 6, 2011, at 4:21 PM, martin.pe...@sympatico.ca martin.pe...@sympatico.ca wrote: From: h...@at.or.at To: martin.pe...@sympatico.ca Date: Tue, 6 Sep 2011 15:57:32 -0400 CC: pd-list@iem.at Subject: Re: [PD] (breaking symbols) was Re: find a list of numbers in a text file On Sep

Re: [PD] pd-extended 0.43 windows 7 installation

2011-09-07 Thread ALAN BROOKER
Hi Hans, Thanks for the help with this but I now get the same error message except it now says 'libstd++-6.dll is missing...' Im downloading from here BTW http://autobuild.puredata.info/auto-build/latest Thanks again On Tue, Sep 6, 2011 at 8:20 PM, Hans-Christoph Steiner h...@at.or.atwrote:

Re: [PD] pd-extended 0.43 windows 7 installation

2011-09-07 Thread Hans-Christoph Steiner
Ok, I think that's the last missing DLL. At least it works for me now on XP. Try tomorrow's build. http://pure-data.svn.sourceforge.net/viewvc/pure-data?view=revisionrevision=15290 .hc On Sep 7, 2011, at 2:57 PM, ALAN BROOKER wrote: Hi Hans, Thanks for the help with this but I now get

Re: [PD] (breaking symbols) was Re: find a list of numbers in a text file

2011-09-07 Thread Jonathan Wilkes
- Original Message - From: Hans-Christoph Steiner h...@at.or.at To: Jonathan Wilkes jancs...@yahoo.com Cc: fbar f...@footils.org; pd-list@iem.at pd-list@iem.at Sent: Tuesday, September 6, 2011 4:04 PM Subject: Re: [PD] (breaking symbols) was Re: find a list of numbers in a text

Re: [PD] [OT] SSE/MMX tips?

2011-09-07 Thread Mathieu Bouchard
On Wed, 7 Sep 2011, Mathieu Bouchard wrote: On Wed, 7 Sep 2011, Bill Gribble wrote: So far iteration on plain floats seems to be the best I can come up with, but HADDPS is tantalizingly close to what I want to do. Any hints? Once I thought that with some commutativity you could speed

Re: [PD] [OT] SSE/MMX tips?

2011-09-07 Thread Charles Henry
On Wed, Sep 7, 2011 at 7:59 PM, Mathieu Bouchard ma...@artengine.ca wrote: On Wed, 7 Sep 2011, Mathieu Bouchard wrote: On Wed, 7 Sep 2011, Bill Gribble wrote: So far iteration on plain floats seems to be the best I can come up with, but HADDPS is tantalizingly close to what I want to do.  

Re: [PD] [OT] SSE/MMX tips?

2011-09-07 Thread Bill Gribble
I noticed that your suggestion did not apply, but assumed it was a subtle riddle taunting me for an offtopic post! I think the best I can do is 2 vector adds and 2 shifts in place of 4 float adds per 4 floats. Not much of a savings, but with the loop and fetch overhead it may be worth it. I'll

Re: [PD] OSC Confusion

2011-09-07 Thread Richie Cyngler
Have you tried [O] | [import mrpeach] then [udprecieve ] (the is whatever port your are using), | [routeOSC] etc? On Thu, Sep 8, 2011 at 2:00 PM, Jim Aikin midigur...@sbcglobal.net wrote: I've been using Pd 0.41.4-extended in Windows 7 64-bit. Attempting to open up

Re: [PD] OSC Confusion

2011-09-07 Thread Patrice Colet
hello, mrPeach OSC objects, and many other ones are stuffed into pd-extended's nightly builds, you can find them at this url: http://autobuild.puredata.info/auto-build/latest/ - Jim Aikin midigur...@sbcglobal.net a écrit : I've been using Pd 0.41.4-extended in Windows 7 64-bit.