Ty Overby

Results 123 comments of Ty Overby

@jnm2: The compiler doesn't know what STAThread or SingleThreadedSynchronizationContext is. We try to keep the coupling between language and framework as minimal as possible.

@satoren your links don't appear to work anymore; do you happen to have the code still laying around?

> I also contacted @msprotz who responded: > >> Tail-calls: yes, if you care about mutually recursive functions, then definitely, a relooper-like algorithm will be needed, or perhaps a trampoline?...

# Many Graphs This is just the many-graphs benchmark that I added to `example.ml`, but extracted to be a standalone example, and with some modifications to fill the whole screen...

When I profiled one of these (many-graphs I think), I found that the program spent ~20% of CPU time converting between 64-bit floats to 32-bit floats to store in the...

I definitely plan on making a crate for these kind of utilities. Also, I don't understand how your example code does what you want? How is it combining similar stacks?

I think the real problem here is that Rayon keeps those threads around in a pool, so the normal destructor-based solution doesn’t work. Try calling `commit_thread` at the end of...

What are the required ppx_expect changes?

I don't have a good intuition for what the _best_ way to solve your problem would be, but these functions might be useful: 1. [`wrap`](https://github.com/janestreet/bonsai/blob/master/src/bonsai.mli#L514) Wrap allows you to build...