in Benchmarks/NVIDIA/Multichase.py [0:0]
def run(self):
current = os.getcwd()
print("Running Multichase...")
results = subprocess.run("cd Benchmarks/NVIDIA && sudo chmod 777 run_multichase.sh && ./run_multichase.sh",shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
tools.write_log(tools.check_error(results))
print(results.stdout.decode("utf-8"))
file = open("Outputs/Multichase_" + self.machine_name + ".txt", "w")
file.write(results.stdout.decode("utf-8"))