Skip to content

Commit

Permalink
process_replay: try to use load_dir with MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Edison-CBS committed Aug 18, 2024
1 parent b3aec47 commit b4931e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion selfdrive/test/process_replay/process_replay.py
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,8 @@ def generate_params_config(lr=None, CP=None, fingerprint=None, custom_params=Non
def generate_environ_config(CP=None, fingerprint=None, log_dir=None) -> dict[str, Any]:
environ_dict = {}
if platform.system() != "Darwin":
environ_dict["PARAMS_ROOT"] = "/dev/shm/params"
# environ_dict["PARAMS_ROOT"] = "/dev/shm/params"
environ_dict["LOG_ROOT"] = log_dir
if log_dir is not None:
environ_dict["LOG_ROOT"] = log_dir

Expand Down

0 comments on commit b4931e7

Please sign in to comment.