search for: dsc2014

Displaying 3 results from an estimated 3 matches for "dsc2014".

Did you mean: dc201
2015 Feb 19
1
Recycling memory with a small free list
...s of large arrays used in a loop. If it's complex, skip it > --- the behavior will be no worse than current. > > By the way, what's happening with Luke's refcnt patches? From the > outside, they seem like a great improvement. > http://homepage.stat.uiowa.edu/~luke/talks/dsc2014.pdf > http://developer.r-project.org/Refcnt.html > Are they slated to become the standard approach? Are they going to be dropped? > Will both approaches be kept in parallel? The approach can be enabled in R-devel by defining a preprocessor variable. It's about 90% of where it needs...
2015 Feb 18
3
Recycling memory with a small free list
> ... with assignments inside of loops like this: > > reweight = function(iter, w, Q) { > for (i in 1:iter) { > wT = w * Q > } > } > ... before the RHS is executed, the LHS allocation would be added > to a small fixed length list of available space which is checked > before future allocations. If the same size is requested before the > next garbage
2015 Feb 19
0
Recycling memory with a small free list
...it: repeated assignments of large arrays used in a loop. If it's complex, skip it --- the behavior will be no worse than current. By the way, what's happening with Luke's refcnt patches? From the outside, they seem like a great improvement. http://homepage.stat.uiowa.edu/~luke/talks/dsc2014.pdf http://developer.r-project.org/Refcnt.html Are they slated to become the standard approach? Are they going to be dropped? Will both approaches be kept in parallel? > Unfortunately, that seems not to be safe, because it's > possible that there is a reference to the no-longer-needed...