summaryrefslogtreecommitdiff
path: root/opendc-simulator/opendc-simulator-compute/src/jmh
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-simulator/opendc-simulator-compute/src/jmh')
-rw-r--r--opendc-simulator/opendc-simulator-compute/src/jmh/kotlin/org/opendc/simulator/compute/SimMachineBenchmarks.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/opendc-simulator/opendc-simulator-compute/src/jmh/kotlin/org/opendc/simulator/compute/SimMachineBenchmarks.kt b/opendc-simulator/opendc-simulator-compute/src/jmh/kotlin/org/opendc/simulator/compute/SimMachineBenchmarks.kt
index c3332d66..e862e4d1 100644
--- a/opendc-simulator/opendc-simulator-compute/src/jmh/kotlin/org/opendc/simulator/compute/SimMachineBenchmarks.kt
+++ b/opendc-simulator/opendc-simulator-compute/src/jmh/kotlin/org/opendc/simulator/compute/SimMachineBenchmarks.kt
@@ -87,7 +87,7 @@ class SimMachineBenchmarks {
engine, machineModel, SimplePowerDriver(ConstantPowerModel(0.0))
)
val random = SplittableRandom(1)
- val hypervisor = SimSpaceSharedHypervisor(engine, null, random)
+ val hypervisor = SimSpaceSharedHypervisor(engine, random, null)
launch { machine.runWorkload(hypervisor) }
@@ -110,7 +110,7 @@ class SimMachineBenchmarks {
engine, machineModel, SimplePowerDriver(ConstantPowerModel(0.0))
)
val random = SplittableRandom(1)
- val hypervisor = SimFairShareHypervisor(engine, null, random)
+ val hypervisor = SimFairShareHypervisor(engine, random, null)
launch { machine.runWorkload(hypervisor) }
@@ -133,7 +133,7 @@ class SimMachineBenchmarks {
engine, machineModel, SimplePowerDriver(ConstantPowerModel(0.0))
)
val random = SplittableRandom(1)
- val hypervisor = SimFairShareHypervisor(engine, null, random)
+ val hypervisor = SimFairShareHypervisor(engine, random, null)
launch { machine.runWorkload(hypervisor) }