Displaying 2 results from an estimated 2 matches for "6260069".
2015 Jan 15
2
default min-v/nsize parameters
...least in our tests can significantly
increase the load time of complex packages.
If we set the triggers at the command line beyond the reach of
library(Matrix) (--min-vsize=2048M --min-nsize=45M), then we see:
used (Mb) gc trigger (Mb) max used (Mb)
Ncells 1076859 57.6 47185920 2520 6260069 334.4
Vcells 1671431 12.8 268435456 2048 9010303 68.8
So by effectively disabling the GC, we let R consume 335MB N + 70MB of V,
but loading goes a lot faster:
Loading Matrix with default settings:
> system.time(library(Matrix))
user system elapsed
1.600 0.011 1.610
With high GC t...
2015 Jan 17
0
default min-v/nsize parameters
...ntly
> increase the load time of complex packages.
>
> If we set the triggers at the command line beyond the reach of
> library(Matrix) (--min-vsize=2048M --min-nsize=45M), then we see:
>
> used (Mb) gc trigger (Mb) max used (Mb)
> Ncells 1076859 57.6 47185920 2520 6260069 334.4
> Vcells 1671431 12.8 268435456 2048 9010303 68.8
>
> So by effectively disabling the GC, we let R consume 335MB N + 70MB of V,
> but loading goes a lot faster:
>
> Loading Matrix with default settings:
>> system.time(library(Matrix))
> user system elapsed
>...