Displaying 2 results from an estimated 2 matches for "8217m".
Did you mean:
8217
2006 May 15
1
Memory allocation fails in R 2.2.1 and R 2.3.0 on SGI Irix, while plenty of memory available (PR#8861)
...by running:
> v1 <- seq(1,2^29)
> v2 <- seq(1,2^29)
> v3 <- seq(1,2^29)
> v4 <- seq(1,2^29)
This yields an R process, consuming about 8 Gb of RAM:
PID PGRP USERNAME PRI SIZE RES STATE TIME WCPU% CPU% COMMAND
177484 177484 mirjam 20 8225M 8217M sleep 1:18 29.3 0.00 R
After upgrading from R 2.0.0 to R 2.2.1, we cannot allocate more than
about 1300 M of memory, as shown below:
> v1 <- seq(1,2^29)
Error: cannot allocate vector of size 2097152 Kb
> v1 <- seq(1,2^28)
> v2 <- seq(1,2^27)
Error: cannot allocate v...
2006 May 15
0
Memory allocation fails in R 2.2.1 and R 2.3.0 on SGI Irix, (PR#8862)
...;- seq(1,2^29)
> > v2 <- seq(1,2^29)
> > v3 <- seq(1,2^29)
> > v4 <- seq(1,2^29)
> This yields an R process, consuming about 8 Gb of RAM:
> PID PGRP USERNAME PRI SIZE RES STATE TIME WCPU% CPU% COMMAND
> 177484 177484 mirjam 20 8225M 8217M sleep 1:18 29.3 0.00 R
>
> After upgrading from R 2.0.0 to R 2.2.1, we cannot allocate more than
> about 1300 M of memory, as shown below:
> > v1 <- seq(1,2^29)
> Error: cannot allocate vector of size 2097152 Kb
> > v1 <- seq(1,2^28)
> > v2 <- seq(1,2^...