[Cython] Another potential optimization possible with transforms

2008-04-10 Thread Martin C. Martin
Hi, There's a potential optimization I mentioned on the Lisp inspired transforms page, where you could reorder bitfields in order to pack them most efficiently. Eerily, someone at my job just committed something that did just that. We have a custom defstruct, called defstruct-bv, which allow

Re: [Cython] Another potential optimization possible with transforms

2008-04-09 Thread Martin C. Martin
Neal Becker wrote: > Martin C. Martin wrote: > >> >> Robert Bradshaw wrote: >>> On Apr 9, 2008, at 8:25 AM, Martin C. Martin wrote: Hi, There's a potential optimization I mentioned on the Lisp inspired transforms page, where you could reorder bitfields in order to pack them >

Re: [Cython] Another potential optimization possible with transforms

2008-04-09 Thread Neal Becker
Martin C. Martin wrote: > > > Robert Bradshaw wrote: >> On Apr 9, 2008, at 8:25 AM, Martin C. Martin wrote: >>> Hi, >>> >>> There's a potential optimization I mentioned on the Lisp inspired >>> transforms page, where you could reorder bitfields in order to pack them >>> most efficiently. Eerily

Re: [Cython] Another potential optimization possible with transforms

2008-04-09 Thread Martin C. Martin
Robert Bradshaw wrote: > On Apr 9, 2008, at 8:25 AM, Martin C. Martin wrote: >> Hi, >> >> There's a potential optimization I mentioned on the Lisp inspired >> transforms page, where you could reorder bitfields in order to pack them >> most efficiently. Eerily, someone at my job just committed so

Re: [Cython] Another potential optimization possible with transforms

2008-04-09 Thread Robert Bradshaw
On Apr 9, 2008, at 8:25 AM, Martin C. Martin wrote: > Hi, > > There's a potential optimization I mentioned on the Lisp inspired > transforms page, where you could reorder bitfields in order to pack > them > most efficiently. Eerily, someone at my job just committed something > that did just that

[Cython] Another potential optimization possible with transforms

2008-04-09 Thread Martin C. Martin
Hi, There's a potential optimization I mentioned on the Lisp inspired transforms page, where you could reorder bitfields in order to pack them most efficiently. Eerily, someone at my job just committed something that did just that. We have a custom defstruct, called defstruct-bv, which allows yo