RE: [racket-users] Startup times

2015-09-15 Thread John Carmack
: Matthew Flatt; John Carmack Cc: Racket Users Subject: Re: [racket-users] Startup times In my arch Linux chroot environment on my nexus 4 a hello world program in racket/base runs in .37 seconds, and strace reports 95% of time spent in read. So I bet you'll get something in that ballpark after

Re: [racket-users] Startup times

2015-09-15 Thread William Hatch
t; >> > >> > >> > From: Marc Burns [mailto:m4bu...@uwaterloo.ca] >> > Sent: Monday, September 14, 2015 8:10 PM >> > To: John Carmack >> > Cc: Racket Users >> > Subject: Re: [racket-users] Startup times >> > >> > >&g

Re: [racket-users] Startup times

2015-09-14 Thread Matthew Flatt
to:m4bu...@uwaterloo.ca] > > Sent: Monday, September 14, 2015 8:10 PM > > To: John Carmack > > Cc: Racket Users > > Subject: Re: [racket-users] Startup times > > > > > > > > Here’s the result of `strace -c -f -- racket -l racket/base` for Rack

Re: [racket-users] Startup times

2015-09-14 Thread Robby Findler
tember 14, 2015 8:10 PM > To: John Carmack > Cc: Racket Users > Subject: Re: [racket-users] Startup times > > > > Here’s the result of `strace -c -f -- racket -l racket/base` for Racket > 6.1.1.8 on my Linux workstation: > > >

RE: [racket-users] Startup times

2015-09-14 Thread John Carmack
No strace on Android, unfortunately. From: Marc Burns [mailto:m4bu...@uwaterloo.ca] Sent: Monday, September 14, 2015 8:10 PM To: John Carmack Cc: Racket Users Subject: Re: [racket-users] Startup times Here’s the result of `strace -c -f -- racket -l racket/base` for Racket 6.1.1.8 on my Linux

Re: [racket-users] Startup times

2015-09-14 Thread Marc Burns
Here’s the result of `strace -c -f -- racket -l racket/base` for Racket 6.1.1.8 on my Linux workstation: % time seconds usecs/call callserrors syscall -- --- --- - - 99.080.004000 571 7 nanosleep 0.

Re: [racket-users] Startup times

2015-09-14 Thread Marc Burns
Set the environment variable PLTSTDERR=debug to get more verbose output. Startup involves traversing all the bytecode files that comprise the base environment. How fast is filesystem access on the Note 4 compared to PC? You could use strace to find the latency on different system calls made duri