[Csnd] tables of arbitrary size
Date | 2013-09-18 04:15 |
From | luis jure |
Subject | [Csnd] tables of arbitrary size |
the manual page for f statements has the following note: "Not all opcodes accept tables whose size is not a power of two, since they may depend on this for internal optimization." with respect to this i have two questions: - is there a list of all the opcodes that accept tables of arbitrary size? - would it be too difficult or for some reason inconvenient that all the opcodes that normally access tables created with GEN01 could read tables of deferred size? (hint: fog) best, lj |
Date | 2013-09-24 19:05 |
From | Andres Cabrera |
Subject | Re: [Csnd] tables of arbitrary size |
Hi Luis, The thing is that there are some significant performance optimizations in the code that are only possible for table sizes that are powers of two (they are actually quite significant, and still relevant for mobile platforms). What could be done is write an opcode that does take arbitrary sized tables.Cheers, Andrés On Tue, Sep 17, 2013 at 8:15 PM, luis jure <ljc@internet.com.uy> wrote:
|