das-research/study.py

79 lines
2.5 KiB
Python
Raw Normal View History

2022-11-30 14:28:27 +00:00
#! /bin/python3
2023-01-25 20:51:59 +00:00
import time, sys, random, copy
import importlib
2023-03-15 11:37:23 +00:00
from joblib import Parallel, delayed
2022-11-30 14:28:27 +00:00
from DAS import *
2023-03-15 11:37:23 +00:00
# Parallel execution:
# The code currently uses 'joblib' to execute on multiple cores. For other options such as 'ray', see
# https://stackoverflow.com/questions/9786102/how-do-i-parallelize-a-simple-python-loop
# For fixing logging issues in parallel execution, see
# https://stackoverflow.com/questions/58026381/logging-nested-functions-using-joblib-parallel-and-delayed-calls
# and https://github.com/joblib/joblib/issues/1017
def initLogger(config):
"""It initializes the logger."""
logger = logging.getLogger("Study")
logger.setLevel(config.logLevel)
ch = logging.StreamHandler()
ch.setLevel(config.logLevel)
ch.setFormatter(CustomFormatter())
logger.addHandler(ch)
return logger
def runOnce(config, shape):
2023-03-15 11:37:23 +00:00
if config.deterministic:
shape.setSeed(config.randomSeed+"-"+str(shape))
random.seed(shape.randomSeed)
2023-03-15 11:37:23 +00:00
sim = Simulator(shape, config)
2023-03-15 11:37:23 +00:00
sim.initLogger()
sim.initValidators()
sim.initNetwork()
result = sim.run()
sim.logger.info("Shape: %s ... Block Available: %d in %d steps" % (str(sim.shape.__dict__), result.blockAvailable, len(result.missingVector)), extra=sim.format)
return result
2022-11-30 14:28:27 +00:00
def study():
if len(sys.argv) < 2:
print("You need to pass a configuration file in parameter")
exit(1)
try:
config = importlib.import_module(sys.argv[1])
except ModuleNotFoundError as e:
try:
config = importlib.import_module(str(sys.argv[1]).replace(".py", ""))
except ModuleNotFoundError as e:
print(e)
print("You need to pass a configuration file in parameter")
exit(1)
logger = initLogger(config)
format = {"entity": "Study"}
results = []
2023-01-25 20:51:59 +00:00
now = datetime.now()
execID = now.strftime("%Y-%m-%d_%H-%M-%S_")+str(random.randint(100,999))
logger.info("Starting simulations:", extra=format)
2022-11-30 14:28:27 +00:00
start = time.time()
results = Parallel(config.numJobs)(delayed(runOnce)(config, shape) for shape in config.nextShape())
2022-11-30 14:28:27 +00:00
end = time.time()
logger.info("A total of %d simulations ran in %d seconds" % (len(results), end-start), extra=format)
2023-01-25 20:51:59 +00:00
if config.dumpXML:
for res in results:
res.dump(execID)
logger.info("Results dumped into results/%s/" % (execID), extra=format)
2023-01-25 20:51:59 +00:00
if config.visualization:
2023-02-22 15:45:39 +00:00
vis = Visualizer(execID)
vis.plotHeatmaps()
2022-11-30 14:28:27 +00:00
if __name__ == "__main__":
study()