@@ -49,6 +49,14 @@ This is the [OpenMP implementation of LLVM's Clang](https://openmp.llvm.org/).
Inspired by prior work of Oliver et al. [oliver2006uts].
For more information, look at the [benchmark's README](./benchmarks/uts/README.md).
### skynet
Inspired by Alexander Temerev's [skynet](https://github.com/atemerev/skynet) micro benchmark.
Skynet creates a large number of fibers by spawning 10 fibers which itself spawn 10 more fibers until the desired number of fibers are created *on the final level*.
Then, each fiber returns its ordinal number, starting with 1, which are then summed on the previous level, which sends its sum back upstream, until the root is reached.
Therefore, calculating the "kleiner Gauß", that is, the sum of the first n subsequent natural numbers.