skynet icon indicating copy to clipboard operation
skynet copied to clipboard

Skynet 1M threads microbenchmark

Results 32 skynet issues
Sort by recently updated
recently updated
newest added

With Rust 1.8.0 installed by Linuxbrew on Linux Mint 17.4 Rosa x64 (based on Trusty), when running `cargo build --release`: ``` /home/fabio/.cargo/registry/src/github.com-88ac128001ac3a9a/fs2-0.2.2/src/unix.rs:63:67: 63:79 error: mismatched types: expected `i64`, found `u64`...

There is rphmeier/skynet-jobsteal implementation of this kata, which is much better and faster than my own (~5× faster on my laptop). It would be very cool to see those results...

I think the test may have some issues: - Scala uses the java vm, that is well know to need a time to "warm-up" and the JIT compiler kick-in. Some...

Just in case if you're curious. It avoids using channels for communications and uses sync.WaitGroup instead. Results are collected via arrays and then aggregated inside a single goroutine. On my...

This is a Java implementation using the Fork/Join functionality of 1.7+ (this particular version requires 1.8 or more). This runs the test ten times to see the effect of a...

clojure-core-async ➜ lein run "Elapsed time: 5494.564275 msecs" 499999500000

I looked at the code, found it a bit weird and went on to debug it. ![](http://julianobs.co/screencloud/16-02-18_11-13-36.png) It seems we have one task running parallel to the Main task and...

Here's the benchmark implemented using Scala `Future` ``` scala import scala.concurrent._ import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.duration._ object Root extends App { def skynet(num: Int, size: Int, div: Int): Future[Long] = {...

Would be great to get .NET Native results. The .NET Core version should work on a UWP project that's compiled in Release mode with .NET Native.