CMU-SAFARI / DAMOV

DAMOV is a benchmark suite and a methodical framework targeting the study of data movement bottlenecks in modern applications. It is intended to study new architectures, such as near-data processing. Described by Oliveira et al. (preliminary version at https://arxiv.org/pdf/2105.03725.pdf)
Other
76 stars 18 forks source link

automation in running simulation #23

Closed apoorvaaaa5 closed 7 months ago

apoorvaaaa5 commented 7 months ago

hey i wanted to know is there any automation like bash script so that i can simulate for multiple features at the same time like host ooo,pim ooo for multiple cores. any bash script for automating simulation would be helpful

geraldofojunior commented 7 months ago

We do not provide any automation script. You can create a python script and loop over the configuration files:

import sys

templates = ["config1.cfg", "config2.cfg", "config3.cfg"]

for t in templates: os.system ("./build/opt.zsim "+ t)

apoorvaaaa5 commented 7 months ago

Ok thank you i will try doing that!!