disruptorplus/build.cake
Lewis Baker 1dafeae1a4 Added some benchmark utilities to allow comparison with other implementations.
Adds benchmarks for communicating a single 64-bit integer between threads in
the following thread topologies:
- unicast (1->1)
- multicast (1->3)
- pipeline (1->1->1->1)
- diamond (1->2->1)
- sequencer (3->1)
2014-07-30 22:23:09 +09:30

12 lines
331 B
C#

###############################################################################
# C++ Disruptor Library
# Copyright (c) 2013 Lewis Baker
###############################################################################
from cake.tools import script
script.execute(script.cwd([
"benchmark/build.cake",
"test/build.cake",
]))