File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ def postgres_dbdata(
108
108
dbgym_cfg .dbgym_workspace_path
109
109
)
110
110
111
- # Convert all input paths to absolute paths
111
+ # Fully resolve all input paths.
112
112
pgbin_path = fully_resolve_inputpath (dbgym_cfg , pgbin_path )
113
113
dbdata_parent_dpath = fully_resolve_inputpath (dbgym_cfg , dbdata_parent_dpath )
114
114
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ def hpo(
294
294
if seed is None :
295
295
seed = random .randint (0 , int (1e8 ))
296
296
297
- # Convert all input paths to absolute paths
297
+ # Fully resolve all input paths.
298
298
embedder_path = fully_resolve_inputpath (dbgym_cfg , embedder_path )
299
299
benchmark_config_path = fully_resolve_inputpath (dbgym_cfg , benchmark_config_path )
300
300
benchbase_config_path = fully_resolve_inputpath (dbgym_cfg , benchbase_config_path )
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ def replay(
151
151
boot_enabled_during_tune ,
152
152
)
153
153
154
- # Convert all input paths to absolute paths
154
+ # Fully resolve all input paths.
155
155
tuning_steps_dpath = fully_resolve_inputpath (dbgym_cfg , tuning_steps_dpath )
156
156
157
157
# Group args together to reduce the # of parameters we pass into functions
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ def tune(
86
86
dbgym_cfg .dbgym_workspace_path , benchmark_name , workload_name
87
87
)
88
88
89
- # Convert all input paths to absolute paths
89
+ # Fully resolve all input paths.
90
90
hpoed_agent_params_path = fully_resolve_inputpath (
91
91
dbgym_cfg , hpoed_agent_params_path
92
92
)
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ def datagen(
226
226
if seed is None :
227
227
seed = random .randint (0 , int (1e8 ))
228
228
229
- # Convert all input paths to absolute paths
229
+ # Fully resolve all input paths.
230
230
workload_path = fully_resolve_inputpath (dbgym_cfg , workload_path )
231
231
benchmark_config_path = fully_resolve_inputpath (dbgym_cfg , benchmark_config_path )
232
232
pgbin_path = fully_resolve_inputpath (dbgym_cfg , pgbin_path )
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ def train(
211
211
if seed is None :
212
212
seed = random .randint (0 , int (1e8 ))
213
213
214
- # Convert all input paths to absolute paths
214
+ # Fully resolve all input paths.
215
215
benchmark_config_path = fully_resolve_inputpath (dbgym_cfg , benchmark_config_path )
216
216
traindata_path = fully_resolve_inputpath (dbgym_cfg , traindata_path )
217
217
hpo_space_path = fully_resolve_inputpath (dbgym_cfg , hpo_space_path )
You can’t perform that action at this time.
0 commit comments