Benchmarks for software transactional memory (STM) implementations on the JVM
Based on the idea of chrisseaton/ruby-stm-lee-demo (and originally on Lee-TM), we've implemented (a simplified version of) Lee’s routing algorithm, and used STM to parallelize it.
Further reading:
- https://chrisseaton.com/truffleruby/ruby-stm/ (the Ruby implementation referred to above),
- and the two papers about Lee-TM:
- Ian Watson, Chris Kirkham and Mikel Luján. "A Study of a Transactional Parallel Routing Algorithm." In Proceedings of the 16th International Conference on Parallel Architectures and Compilation Techniques (PACT 2007), Brasov, Romania, Sept. 2007, pp 388-398. (PDF)
- Mohammad Ansari, Christos Kotselidis, Kim Jarvis, Mikel Luján, Chris Kirkham, and Ian Watson. "Lee-TM: A Non-trivial Benchmark for Transactional Memory." In Proceedings of the 8th International Conference on Algorithms and Architectures for Parallel Processing (ICA3PP 2008), Aiya Napa, Cyprus, June 2008. (PDF)
We've implemented Lee's algorithm with various STMs in Scala (and one in Kotlin). We've tried to implement the algorithm as similar as reasonably possible in every implementation, but we didn't write (intentionally) unidiomatic code just to be more similar. The tested/measured STMs are (in alphabetic order) as follows (with some remarks for each implementation):
- arrow-fx-stm in folder arrow-stm
- The algorithm is written in Kotlin, with a thin Scala wrapper; certain parts of the Kotlin code are weird due to trying to implement a Scala API without excessive copying.
- We run the STM transactions on the default coroutine dispatcher of Kotlin (as they're probably expected to be used).
- We also have to run some
cats.effect.IO
s (for loading the boards), but we run these also on the same coroutine dispatcher (so we don't have another thread pool running). - We use
arrow.fx.stm.TArray
for the board matrices.
- Cats STM in folder cats-stm
- Cats STM is parametric in the effect type, so we run with two different
F[_]
s:cats.effect.IO
, which we run on a Cats Effect runtime.zio.Task
, which we run on azio.Runtime
.
- Cats STM doesn't have a built-in
TArray
or similar type, so we useArray[TVar[A]]
for the board matrices.
- Cats STM is parametric in the effect type, so we run with two different
- CHOAM in folder choam
- This is technically not an STM, but close enough (this algorithm doesn't require
everything from an STM, e.g., there is no need for the
orElse
combinator). - CHOAM's
Rxn
is parametric in the effect type, so we run with two differentF[_]
s:cats.effect.IO
, which we run on a Cats Effect runtime.zio.Task
, which we run on azio.Runtime
.
- For the board matrices we use the built-in
Ref.array
in CHOAM.
- This is technically not an STM, but close enough (this algorithm doesn't require
everything from an STM, e.g., there is no need for the
- ScalaSTM in folder scala-stm
- We've implemented 2 versions:
ScalaStmSolver
uses the ScalaSTM API in an idiomatic way, whileWrStmSolver
wraps the ScalaSTM API in a monadic API similar to that of Cats STM or ZSTM. This way we can also get some ideas about the overhead of a monadic ("programs as values") API. - For easy parallelization, we run the ScalaSTM transactions on a Cats Effect runtime.
ScalaSTM sometimes blocks threads, but does this by using
scala.concurrent.BlockContext
, which is supported by the Cats Effect runtime (it starts compensating threads as necessary), so this should be fine (although maybe not ideal). - We use ScalaSTM's
TArray
for the board matrices.
- We've implemented 2 versions:
- ZSTM in folder zstm.
- We run the ZSTM transactions on their own
zio.Runtime
, which they are presumably designed for. - We use ZSTM's
TArray
for the board matrices.
- We run the ZSTM transactions on their own
We try to run the various implementations on asynchronous runtimes they're designed for. When they're not designed for a specific runtime, we benchmark them on multiple ones (see above for details). We configure these runtimes by trying to turn off features which could have a negative performance impact. In particular:
cats.effect.unsafe.IORuntime
: we disable tracing.zio.Runtime
: we disableFiberRoots
.
Some general remarks:
- The transactions in these implementations of Lee’s routing algorithm are read heavy,
but at the end they always write to some locations (to lay a route). This means that
read-only transactions, and transactions which only access a very small number of
TVar
s are not tested/measured. - We also have a (baseline) sequential (non-parallelized) implementation of the same algorithm in folder sequential. This sequential implementation is intentionally not very well optimized, because we'd like to compare it to similarly high-level and easy to use STMs.
Benchmarks are in Benchmarks.scala
.
They can be configured with the following JMH parameters:
board
(String
): the input(s) are specified by this parameter, which is a filename to be loaded from classpath resources.testBoard.txt
: originally from Lee-TM, apparently a "small but realistic board".sparselong_mini.txt
: a small version ofsparselong.txt
, originally from Lee-TM; it has very long routes, so there are lots of conflicts between the transactions.sparseshort_mini.txt
: a small version ofsparseshort.txt
, originally from Lee-TM; it has very short routes, which cause transactions to have few conflicts.four_crosses.txt
: a very small board we've created, with very short routes, which still have both some conflicts, and also some possibilities for parallelization.
seed
(Long
): before solving, the boards are "normalized" with a pseudorandom shuffle; this is the random seed to use.restrict
(Int
):- Before solving, the boards are "restricted", i.e., some of the routes are removed from them. This makes solving them easier (because there is less work, and also less chance of conflicts).
- The value passed to this parameter will be used to
>>
(right shift) the number of routes; e.g.,restrict=1
will remove approximately half of the routes. (The routes to remove are chosen pseudorandomly based onseed
.) - The goal with this parameter is to run more measurements, e.g., with
restrict=2,1,0
, to see how the STMs deal with increasing work (and also conflicts).
repeat
(Int
): very small boards are solved so quickly, that the overhead of submitting the work to an IO runtime causes problems with the measurement; to solve this problem, these small boards can be configured with this parameter to be repeatedly solved in one JMH method invocation.
The various parallel implementations are tunable with more parameters:
parLimit
(Int
): parallelism is limited to this value (e.g., withparTraverseN
), but see below; specify0
to useRuntime.getRuntime().availableProcessors()
.parLimitMultiplier
(Int
): we useparLimit * parLimitMultiplier
as the parallelism limit.