[PD] array-abs

Matt Barber brbrofsvl at gmail.com
Sun Oct 4 20:27:37 CEST 2015


Your [pd drip] does a lot of extra work. It's go basically linear stack
performance, and you're recopying the list every loop (an until loop would
solve this for a little extra cpu time). The secret of [list-drip] is that
it doesn't recopy the list using the [list] object, and it avoids stack
overflows by doing the recursion split at the midpoint of the list and only
outputting when it's done the binary split down to lists of size 1, which
are the elements, or size zero, which are bangs (and which are filtered
out).

Since it's binary recursion on the list, the stack only grows
proportionally to log_2(n), which is about 20 for n=1,000,000. It's still
going to be slower than an object written in C that can just iterate over
the contents in a single loop, and lists in Pd are slower in general than
arrays, so an until loop and tabread over an array is going to be quicker.
It is much slower for copying though -- an until loop with tabread and
tabwrite has way more overhead than an [array get]-[array set] pair.


On Sun, Oct 4, 2015 at 1:06 PM, Christof Ressi <christof.ressi at gmx.at>
wrote:

> Please don't use the previous version of the multi-dimensional arrays!!!
> First, I forget to get rid of one [drip] object. Second, I discovered that
> [pd drip] will create a stack overflow if there are more than ca. 300
> elements! (Why???) So I replaced it with [list-drip] which works fine.
>
> So here's the corrected pure vanilla version + a zexy version using
> [drip]. I prefer to use the latter one because it's waaaaay faster than all
> the drip abstractions based on [list split].
>
> Vanilla: https://www.dropbox.com/s/wd0avxtaneqgdic/carray_vanilla.zip?dl=0
> Zexy: https://www.dropbox.com/s/ea8kihwbdqhcajr/carray_zexy.zip?dl=0
>
> Christof
>
> PS:  I did a benchmark test of iterating through an array of 1 million
> elements, using [realtime], and here's what I found on my system:
>
> [array get] + [drip] --> ca. 6.5-9ms
> [until] + [tabread] --> ca. 120-200ms
> [array get] + [list-drip] --> ca. 340-400ms
>
> To me this result was a bit surprising...
>
> You can test yourself with the attached patch.
> *Gesendet:* Sonntag, 04. Oktober 2015 um 17:32 Uhr
> *Von:* "Christof Ressi" <christof.ressi at gmx.at>
> *An:* "Matt Barber" <brbrofsvl at gmail.com>
>
> *Cc:* Pd-List <pd-list at lists.iem.at>
> *Betreff:* Re: [PD] array-abs
> Wow, looks cool!
>
> Just a few days ago I reworked some of my personal table abstractions,
> which also make use of the [array] object. However, some of them depend on
> zexy externals (I hope I didn't miss any other dependencies). I haven't
> shared them yet so the documentation is quite poor (no help files, docs
> inside the abstraction) and they look a bit messy. But maybe you can get
> some inspiration for your library...
> https://www.dropbox.com/s/xvj031korqw8guf/ctab-abs.zip?dl=0
>
> Additionally I've been working on three basic abstractions for creating,
> setting and reading multi-dimensional arrays of any number of dimensions.
> They are pure vanilla style and even come with a help file :-D.  (a object
> for array resizing is yet to be done...)
> https://www.dropbox.com/s/6xfgdyt697138e6/carray.zip?dl=0
>
> Would be cool to hear your opinion on the multi-dimensional array stuff!
>
> Christof
>
>
>
>
> *Gesendet:* Samstag, 03. Oktober 2015 um 22:32 Uhr
> *Von:* "Matt Barber" <brbrofsvl at gmail.com>
> *An:* "IOhannes m zmölnig" <zmoelnig at iem.at>
> *Cc:* Pd-List <pd-list at lists.iem.at>
> *Betreff:* Re: [PD] array-abs
> Thanks.
>
> Yes. Right now I'm just looking to see if these would be useful, if
> there's anything awful about the syntax, if they try to do too much or are
> too fussy, if anyone would want to contribute, etc. When I get them
> polished a bit I'll do a regular release on the normal channels (I can't
> remember if I have access to anything officially Pd related).
>
> Matt
>
> On Sat, Oct 3, 2015 at 4:22 PM, IOhannes m zmölnig <zmoelnig at iem.at>
> wrote:
>>
>> hi,
>>
>> great!
>>
>> On 10/03/2015 07:36 PM, Matt Barber wrote:
>> >
>> > https://www.dropbox.com/s/45tk62dpz0z2mqo/array-abs.zip?dl=0
>> >
>>
>> db?
>>
>> would you like to put those on a version control system of sorts, e.g.
>> the puredata svn or some publicly available git repository (e.g. github)?
>>
>> (read as: please let us not go back to the dark ages, where code was
>> shared by sending files around by on floppy disks and you never new
>> which version was the current one)
>>
>> fgmards
>> IOhannes
>>
>>
>>
>> _______________________________________________
>> Pd-list at lists.iem.at mailing list
>> UNSUBSCRIBE and account-management ->
>> http://lists.puredata.info/listinfo/pd-list
>>
>
> _______________________________________________ Pd-list at lists.iem.at
> mailing list UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
> _______________________________________________ Pd-list at lists.iem.at
> mailing list UNSUBSCRIBE and account-management ->
> http://lists.puredata.info/listinfo/pd-list
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puredata.info/pipermail/pd-list/attachments/20151004/7f3cc6f0/attachment-0001.html>


More information about the Pd-list mailing list