Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/run_dev_jetson.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ USER_ID=$(id -u)

# Base directories
script_dir=$(dirname "$(realpath "$0")")
workspace_dir=${script_dir}
env_dir=${workspace_dir}/../env/jetson
workspace_dir=$(realpath "${script_dir}/..")
env_dir=${workspace_dir}/env/jetson

# Container and image names
IMAGE_NAME="inference-opt-jetson"
Expand Down
4 changes: 2 additions & 2 deletions scripts/run_dev_ml_cpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ set -o xtrace # print each command before executing

# Base directories
script_dir=$(dirname "$(realpath "$0")")
workspace_dir=${script_dir}
env_dir=${workspace_dir}/../env/ml_cpu
workspace_dir=$(realpath "${script_dir}/..")
env_dir=${workspace_dir}/env/ml_cpu

# Container and image names
IMAGE_NAME="inference-opt"
Expand Down
Loading