22from abc import ABC , abstractmethod
33
44from backend .config .paths import (
5- get_process_filepath ,
5+ get_thread_filepath ,
66 RESULTS_DIR ,
77 LAUNCH_INFO_FILE ,
88 MODEL_ONNX_FILE ,
@@ -40,9 +40,9 @@ class RunstratBaseline(DockerRunner):
4040 def _volumes (self , uid ) -> list [str ]:
4141 return [
4242 "-v" ,
43- f"{ get_process_filepath (uid , RESULTS_DIR )} :/workspace/PySymGym/tools/runstrat/results" ,
43+ f"{ get_thread_filepath (uid , RESULTS_DIR )} :/workspace/PySymGym/tools/runstrat/results" ,
4444 "-v" ,
45- f"{ get_process_filepath (uid , LAUNCH_INFO_FILE )} "
45+ f"{ get_thread_filepath (uid , LAUNCH_INFO_FILE )} "
4646 f":/workspace/PySymGym/tools/runstrat/resources/launch_info.csv" ,
4747 ]
4848
@@ -67,12 +67,12 @@ class RunstratAI(DockerRunner):
6767 def _volumes (self , uid ) -> list [str ]:
6868 return [
6969 "-v" ,
70- f"{ get_process_filepath (uid , RESULTS_DIR )} :/workspace/PySymGym/tools/runstrat/results" ,
70+ f"{ get_thread_filepath (uid , RESULTS_DIR )} :/workspace/PySymGym/tools/runstrat/results" ,
7171 "-v" ,
72- f"{ get_process_filepath (uid , LAUNCH_INFO_FILE )} "
72+ f"{ get_thread_filepath (uid , LAUNCH_INFO_FILE )} "
7373 f":/workspace/PySymGym/tools/runstrat/resources/launch_info.csv" ,
7474 "-v" ,
75- f"{ get_process_filepath (uid , MODEL_ONNX_FILE )} "
75+ f"{ get_thread_filepath (uid , MODEL_ONNX_FILE )} "
7676 f":/workspace/PySymGym/tools/runstrat/resources/model.onnx" ,
7777 ]
7878
@@ -99,13 +99,13 @@ class Compstrat(DockerRunner):
9999 def _volumes (self , uid ) -> list [str ]:
100100 return [
101101 "-v" ,
102- f"{ get_process_filepath (uid , ARTIFACTS_AI_CSV_FILE )} "
102+ f"{ get_thread_filepath (uid , ARTIFACTS_AI_CSV_FILE )} "
103103 ":/workspace/PySymGym/tools/compstrat/strat/ai_strat" ,
104104 "-v" ,
105- f"{ get_process_filepath (uid , ARTIFACTS_BASELINE_CSV_FILE )} "
105+ f"{ get_thread_filepath (uid , ARTIFACTS_BASELINE_CSV_FILE )} "
106106 ":/workspace/PySymGym/tools/compstrat/strat/baseline_strat" ,
107107 "-v" ,
108- f"{ get_process_filepath (uid , COMPSTRAT_RESULTS_DIR )} "
108+ f"{ get_thread_filepath (uid , COMPSTRAT_RESULTS_DIR )} "
109109 ":/workspace/PySymGym/tools/compstrat/results" ,
110110 ]
111111
0 commit comments