Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
baseline experiment final params
Browse files Browse the repository at this point in the history
  • Loading branch information
taivop committed Oct 9, 2016
1 parent 42127d6 commit 154dda9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/py/exp_baseline.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from deployer import Deployer

UPDATE_AND_INSTALL = False
NUM_REPETITIONS = 1
NUM_REPETITIONS = 5
EXPERIMENT_RUNTIME = 30 # seconds
EXPERIMENT_RUNTIME_STRING = "{}s".format(EXPERIMENT_RUNTIME)
STATS_FREQUENCY = "10m"
Expand Down Expand Up @@ -96,7 +96,8 @@
memaslap_server2.clear_logs()

log_filename_base = "baseline_memaslap{}_conc{:03}_rep{:02}.out"
ms_concurrencies = [1, 2, 4] #+ list(range(8, 129, 8))
ms_concurrencies = [1, 2, 4] + list(range(8, 129, 8))
log.info("Running {} repetitions each at concurrencies {}".format(NUM_REPETITIONS, str(ms_concurrencies)))

for i in range(0, len(ms_concurrencies)):
for rep in range(NUM_REPETITIONS):
Expand Down

0 comments on commit 154dda9

Please sign in to comment.