Hi Blake, I am afraid that the matter is not that simple. For example if you pass a value (-pointer) from one C++ function to another as function argument, would that be a new owner? If yes then we would get very many list insertions and deletions. If no then a number of functions that return their argument, but only under certain conditions, would need to be rewritten. Another problem is nested arrays (currently the nested value does not know the value that contains it). The main cases of cloning appear when assigning and referencing variables. We have seen examples in the past where optimizing one or the other has produced incorrect results (David's ⍬ problem and my recent A+ (A[3]←3) ⊢ A←10⍴10 example).
And we have only opinions and no hard numbers that tell us how many cycles the cloning really cost use. It is pretty easy to construct an example demonstrating that this number is huge. But it is equally easy to produce a counter-example showing that a (doubly-) linked list approach is slower than the present scheme. My approach would be to add some performance counters to really understand this better. /// Jürgen On 08/24/2014 11:35 PM, blake1...@gmail.com wrote: What about keeping a linked list of owners, figure who is getting written to, and clone that one only? Typically there would only be one owner, and you can do the linked check with inline code.. I think avoiding a lot of cloning is important. |
- [Bug-apl] Optimizations revived Juergen Sauermann
- Re: [Bug-apl] Optimizations revived Elias Mårtenson
- Re: [Bug-apl] Optimizations revived Juergen Sauermann
- Re: [Bug-apl] Optimizations revived Elias Mårtenson
- Re: [Bug-apl] Optimizations revived Juergen Sauermann
- Re: [Bug-apl] Optimizations revive... Elias Mårtenson
- Re: [Bug-apl] Optimizations re... Juergen Sauermann
- Re: [Bug-apl] Optimizations re... blake1024
- Re: [Bug-apl] Optimization... Juergen Sauermann