Skip to content

Commit 03ccb0d

Browse files
committed
comment change
1 parent b86ad31 commit 03ccb0d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dbms/postgres/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def postgres_dbdata(
108108
dbgym_cfg.dbgym_workspace_path
109109
)
110110

111-
# Convert all input paths to absolute paths
111+
# Fully resolve all input paths.
112112
pgbin_path = fully_resolve_inputpath(dbgym_cfg, pgbin_path)
113113
dbdata_parent_dpath = fully_resolve_inputpath(dbgym_cfg, dbdata_parent_dpath)
114114

tune/protox/agent/hpo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def hpo(
294294
if seed is None:
295295
seed = random.randint(0, int(1e8))
296296

297-
# Convert all input paths to absolute paths
297+
# Fully resolve all input paths.
298298
embedder_path = fully_resolve_inputpath(dbgym_cfg, embedder_path)
299299
benchmark_config_path = fully_resolve_inputpath(dbgym_cfg, benchmark_config_path)
300300
benchbase_config_path = fully_resolve_inputpath(dbgym_cfg, benchbase_config_path)

tune/protox/agent/replay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def replay(
151151
boot_enabled_during_tune,
152152
)
153153

154-
# Convert all input paths to absolute paths
154+
# Fully resolve all input paths.
155155
tuning_steps_dpath = fully_resolve_inputpath(dbgym_cfg, tuning_steps_dpath)
156156

157157
# Group args together to reduce the # of parameters we pass into functions

tune/protox/agent/tune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def tune(
8686
dbgym_cfg.dbgym_workspace_path, benchmark_name, workload_name
8787
)
8888

89-
# Convert all input paths to absolute paths
89+
# Fully resolve all input paths.
9090
hpoed_agent_params_path = fully_resolve_inputpath(
9191
dbgym_cfg, hpoed_agent_params_path
9292
)

tune/protox/embedding/datagen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def datagen(
226226
if seed is None:
227227
seed = random.randint(0, int(1e8))
228228

229-
# Convert all input paths to absolute paths
229+
# Fully resolve all input paths.
230230
workload_path = fully_resolve_inputpath(dbgym_cfg, workload_path)
231231
benchmark_config_path = fully_resolve_inputpath(dbgym_cfg, benchmark_config_path)
232232
pgbin_path = fully_resolve_inputpath(dbgym_cfg, pgbin_path)

tune/protox/embedding/train.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def train(
211211
if seed is None:
212212
seed = random.randint(0, int(1e8))
213213

214-
# Convert all input paths to absolute paths
214+
# Fully resolve all input paths.
215215
benchmark_config_path = fully_resolve_inputpath(dbgym_cfg, benchmark_config_path)
216216
traindata_path = fully_resolve_inputpath(dbgym_cfg, traindata_path)
217217
hpo_space_path = fully_resolve_inputpath(dbgym_cfg, hpo_space_path)

0 commit comments

Comments
 (0)