()
| 19 | |
| 20 | |
| 21 | def install_dependency(): |
| 22 | p = subprocess.run( |
| 23 | "bash {}/../scripts/install_dependency.sh".format(BASEPATH), |
| 24 | shell=True, |
| 25 | stdout=subprocess.DEVNULL, |
| 26 | stderr=subprocess.PIPE, |
| 27 | ) |
| 28 | |
| 29 | if p.stderr.decode() != "": |
| 30 | print(p.stderr.decode()) |
| 31 | |
| 32 | |
| 33 | def compile_cachesim(): |