Luca.Toldo@merck.de
2002-Jan-21 09:18 UTC
[R] [R 1.4] WARNING: --max-vsize=8000M : too large and ignored
Why is there a limit on the amount of vector heap one can use ? I am operating on a 16GB SGI (O2000) machine. Furthermore, is there any way to make R using multiple threads ? Regards Luca p.s. I understand that I might be pushing a bit R beyond its most common operation set. However, also understanding where the limits of R are, is a good excercise. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Thomas Lumley
2002-Jan-21 18:45 UTC
[R] [R 1.4] WARNING: --max-vsize=8000M : too large and ignored
On Mon, 21 Jan 2002 Luca.Toldo at merck.de wrote:> Why is there a limit on the amount of vector heap one can use ? > I am operating on a 16GB SGI (O2000) machine.The underlying reason is that nearly everyone uses R on machine that can't address that much memory, so there isn't much motivation or ability to extend the limits. The more direct reason is that the memory manager indexes some things with C ints, which are presumably still 32 bits on your machine. Extending it isn't quite as simple as changing int to long everywhere, as the file format requires 32bit types in some places, and R's integer type has to be the same as C int and FORTRAN INTEGER. Unless a user who needs to use large memories implements the changes it may have to wait quite a while.> Furthermore, is there any way to make R using multiple threads ?Not at the moment (in the sense you probably want). There is work being done in that direction, and you can see some of the notes on http://developer.r-project.org, but nothing is imminent. -thomas Thomas Lumley Asst. Professor, Biostatistics tlumley at u.washington.edu University of Washington, Seattle -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._