mirror of
https://github.com/xenia-project/disruptorplus.git
synced 2024-11-26 21:10:25 +00:00
1dafeae1a4
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)
12 lines
331 B
C#
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",
|
|
]))
|