Skip to content
Snippets Groups Projects
Commit f937d70b authored by Akash Kothari's avatar Akash Kothari :speech_balloon:
Browse files

Add commands to remove stray files in the run_dnn script

parent 486ca864
No related branches found
No related tags found
No related merge requests found
...@@ -126,6 +126,9 @@ def predictive_tuning_exec(dnn_name): ...@@ -126,6 +126,9 @@ def predictive_tuning_exec(dnn_name):
print("pred_dir: " + pred_dir) print("pred_dir: " + pred_dir)
print("config_file: " + config_file) print("config_file: " + config_file)
print("temp_file: " + temp_file) print("temp_file: " + temp_file)
exec_command = "rm " + temp_file + " " + accuracy_file + " " + profile_file + " " + pred_dir + "profile*"
print(exec_command)
os.system(exec_command)
config_num = 1 config_num = 1
max_configs = max_num_configs(config_file) max_configs = max_num_configs(config_file)
baseline_time = 0 baseline_time = 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment