Re: [Bug-apl] 80 core performance results

2014-08-23 Thread Juergen Sauermann
Hi Elias, I believe the gain of coalescing functions (or slicing the values involved) is somewhat limited and occurs only when your APL values are small. For large values computing one function after the other has a better cache locality. And it has a

[Bug-apl] Optimizations revived

2014-08-23 Thread Juergen Sauermann
Hi, I have revived Elias' in-place optimization for A⍴B and ,B now usinng a different way of figuring if B is in use. SVN 445. /// Jürgen

Re: [Bug-apl] Optimizations revived

2014-08-23 Thread Elias Mårtenson
Cool :-) Speaking of this, I did spend quite a bit of time some time ago to try to figure out an easy way to get generic copy-on-write semantics, but I never came to a satisfactory conclusion. I might revisit it later. Have you thought about it? It is, after all, related to this specific optimisa

Re: [Bug-apl] Optimizations revived

2014-08-23 Thread Juergen Sauermann
Hi Elias, normally APL values are not written to. The exception is indexed assignment. I believe the clone() call in Symbol::resolve() can be skipped completely. This is probably the most frequently used clone() case. I suppose copy-on-write semantics is

[Bug-apl] Uh oh... SVN 445

2014-08-23 Thread David Lamkins
I ran into this after updating to 445. This is in a pendent function. ''≡0⍴value 0 8⎕cr value ┌→───┐ │unix│ └┘ ''≡0⍴'unix' 1 8⎕cr 'unix' ┌→───┐ │unix│ └┘ -- "The secret to creativity is knowing how to hide your sources." Albert Einstein http://soundcloud.co

[Bug-apl] Seeking clues regarding quote-quad prompt

2014-08-23 Thread David B. Lamkins
Back on the subject of aplwrap integration: I'm seeing a GNU APL behavior that I don't understand, and would appreciate some hints on where to look. I don't necessarily consider the following behavior to be buggy, I just want to be able to figure out how and why it's happening so I can dig into th