Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-24 Thread Matthew Flatt
At Tue, 24 Jul 2012 11:03:16 -0400, Ryan Culpepper wrote: * Matthew Flatt mfl...@cs.utah.edu - Racket Tests - Languages Tests - GRacket Tests (Also check that `gracket -z' and `gracket-text' still works in Windows and Mac OS X) - mzc --exe tests - .plt-packing Tests

[racket-dev] Where does this program allocate?

2012-07-24 Thread Sam Tobin-Hochstadt
I've been trying to use the new futures visualizer (which is great) to improve my parallel version of the mandelbrot benchmark (collects/tests/racket/shootout/mandelbrot-futures.rkt). My current code is attached. You can run it like this: $ racket mand.rkt 4000 8 # 8 is the number of

Re: [racket-dev] Where does this program allocate?

2012-07-24 Thread James Swaine
I noticed the large amount of allocation going on when I was using mandelbrot to test my fixes to the visualizer last week -- I'll take a look. I wrote an allocation hotspot profiler tool that may end up as part of the visualizer in some form, so I can try running it on your code. On Tue, Jul

[racket-dev] seeing segfaults on build on 64-bit ubuntu

2012-07-24 Thread Danny Yoo
I'm seeing segfaults when trying to build the release on my uber 64-bit Ubuntu box. (I'm on c9d0319a11cb2aae6d1e81d0c6465b4241a4ecff) raco setup: 2 running: picturing-programs/picturing-programs.scrbl raco setup: 1 running: plai/scribblings/plai.scrbl raco setup: 2 running: planet/planet.scrbl

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-24 Thread David Van Horn
On 7/24/12 11:03 AM, Ryan Culpepper wrote: * David Van Horn dvanh...@ccs.neu.edu - EoPL Tests Passed. _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-24 Thread Robby Findler
On Tue, Jul 24, 2012 at 10:03 AM, Ryan Culpepper r...@cs.utah.edu wrote: * Robby Findler ro...@eecs.northwestern.edu - DrRacket Tests - Framework Tests - Contracts Tests - Games Tests - Teachpacks Tests: image tests - PLaneT Tests - Redex Tests Updates: - DrRacket

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-24 Thread Gregory Cooper
* Greg Cooper g...@cs.brown.edu - FrTime Tests Done. _ Racket Developers list: http://lists.racket-lang.org/dev

[racket-dev] small documentation bug

2012-07-24 Thread D Herring
In the Racket Guide, the documentation for WHEN and UNLESS says The result is #void in any case. http://docs.racket-lang.org/guide/begin.html#%28part._when+unless%29 I think that is incorrect. The Racket Reference says #void is the result only when the body is not evaluated. - Daniel