Skip to content
Prev 58987 / 398502 Next

R on 64-bit Linux machine

Peter Dalgaard <p.dalgaard at biostat.ku.dk> writes:
Specifically, here's what I got:

pd at linux:~/r-devel> echo 'set.seed(1);M<-matrix(rnorm(9e6),3e3);system.time(solve(M))' | BUILD/bin/R -q --vanilla
[1] 218.00   1.27 219.62   0.00   0.00
pd at linux:~/r-devel> echo 'set.seed(1);M<-matrix(rnorm(9e6),3e3);system.time(solve(M))' | BUILD-GOTO/bin/R -q --vanilla
[1] 29.12  1.39 32.21  0.00  0.00
pd at linux:~/r-devel> echo 'set.seed(1);M<-matrix(rnorm(9e6),3e3);system.time(solve(M))' | BUILD-ATLAS/bin/R -q --vanilla
[1]  3.24  1.31 21.45 31.75  0.24
So ATLAS is faster than GOTO by about 10 seconds. It is a bit odd that
the GOTO timings don't seem to include any subprocess time but it
should be the threaded library libgoto_opt64p-r0.93.so (I know;
there's a 0.96 now, will upgrade).