59 lines
2.4 KiB
Python
59 lines
2.4 KiB
Python
from pathos.multiprocessing import ProcessingPool as Pool
|
|
from tabulate import tabulate
|
|
|
|
from SimCAD.utils import flatten
|
|
from SimCAD.utils.ui import create_tensor_field
|
|
from SimCAD.utils.configProcessor import generate_config
|
|
from SimCAD.engine.simulation import Executor as SimExecutor
|
|
|
|
class ExecutionContext:
|
|
|
|
def parallelize_simulations(self, fs, states_list, configs, env_processes, Ts, Ns):
|
|
l = list(zip(fs, states_list, configs, env_processes, Ts, Ns))
|
|
with Pool(len(configs)) as p:
|
|
results = p.map(lambda t: t[0](t[1], t[2], t[3], t[4], t[5]), l)
|
|
|
|
return results
|
|
|
|
|
|
class Executor:
|
|
|
|
def __init__(self, ExecutionContext, configs):
|
|
self.SimExecutor = SimExecutor
|
|
self.ExecutionContext = ExecutionContext
|
|
self.configs = configs
|
|
self.main = self.execute
|
|
|
|
def execute(self):
|
|
|
|
ec = ExecutionContext()
|
|
print(self.configs)
|
|
states_lists, Ts, Ns, eps, configs_structs, env_processes_list, mechanisms, simulation_execs = \
|
|
[], [], [], [], [], [], [], []
|
|
config_idx = 0
|
|
for x in self.configs:
|
|
states_lists.append([x.state_dict])
|
|
Ts.append(x.sim_config['T'])
|
|
Ns.append(x.sim_config['N'])
|
|
eps.append(list(x.exogenous_states.values()))
|
|
configs_structs.append(generate_config(x.state_dict, x.mechanisms, eps[config_idx]))
|
|
env_processes_list.append(x.env_processes)
|
|
mechanisms.append(x.mechanisms)
|
|
simulation_execs.append(SimExecutor(x.behavior_ops).simulation)
|
|
|
|
config_idx += 1
|
|
|
|
# Dimensions: N x r x mechs
|
|
|
|
if len(self.configs) > 1:
|
|
simulations = ec.parallelize_simulations(simulation_execs, states_lists, configs_structs, env_processes_list, Ts, Ns)
|
|
results = []
|
|
for result, mechanism, ep in list(zip(simulations, mechanisms, eps)):
|
|
print(tabulate(create_tensor_field(mechanism, ep), headers='keys', tablefmt='psql'))
|
|
results.append(flatten(result))
|
|
return results
|
|
else:
|
|
simulation, states_list, config = simulation_execs.pop(), states_lists.pop(), configs_structs.pop()
|
|
env_processes, T, N = env_processes_list.pop(), Ts.pop(), Ns.pop()
|
|
result = simulation(states_list, config, env_processes, T, N)
|
|
return flatten(result) |