Skip to content
Open
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
2 changes: 1 addition & 1 deletion config/extension.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ name = "expt"
# TODO: Uncomment and provide path to a ros_ws
# with rosdeps to be installed. If none,
# leave it commented out.
# ros_ws = "path/from/extension_root/to/ros_ws"
# ros_ws = "path/from/extension_root/to/ros_ws"
10 changes: 5 additions & 5 deletions dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ run_check() {
run_update() {
echo "Entering isaaclab submodule..."
cd isaaclab || exit

echo "Fetching tags..."
git fetch --tags

# Get the latest tag
LATEST_TAG=$(git tag --sort=-v:refname | head -n 1)
echo "Found latest tag: $LATEST_TAG"

git checkout "$LATEST_TAG"
cd ..

echo "Committing changes to parent repo..."
git add isaaclab
git commit -m "Update isaaclab submodule to tag $LATEST_TAG"
Expand All @@ -84,4 +84,4 @@ case "$1" in
show_help
exit 1
;;
esac
esac
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dynamic = ["version"] # https://hatch.pypa.io/latest/config/metadata/#version
dependencies = [
"isaacsim[all,extscache]==5.1.0.0", # https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/pip_installation.html#installing-dependencies
"torch==2.7.0",
"torchvision==0.22.0",
"torchvision==0.25.0",
"isaaclab",
"isaaclab-assets",
"isaaclab-mimic",
Expand Down Expand Up @@ -45,7 +45,7 @@ override-dependencies = ["pywin32==306; sys_platform == 'win32'"]
# 2. https://docs.astral.sh/uv/concepts/projects/dependencies/#platform-specific-dependencies

[tool.uv.sources]
# pip install torch==2.7.0 torchvision==0.22.0 --index-url https://download.pytorch.org/whl/cu128
# pip install torch==2.7.0 torchvision==0.25.0 --index-url https://download.pytorch.org/whl/cu128
torch = [{ index = "pytorch-cu128" }]
torchvision = [{ index = "pytorch-cu128" }]
# pip install "isaacsim[all,extscache]==5.1.0.0" --extra-index-url https://pypi.nvidia.com
Expand Down
8 changes: 4 additions & 4 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ show_help() {
cmd_train() {
local TASK=""
local RUN_NAME=""

# Parse arguments specific to training
while [[ $# -gt 0 ]]; do
case $1 in
Expand Down Expand Up @@ -144,7 +144,7 @@ cmd_sync() {
local LOCAL_PATH="$HOME/DevSpace/IsaacLab-uv/logs/"

echo "Starting sync from AutoDL..."

if ! command -v sshpass &> /dev/null; then
echo "Error: sshpass is not installed."
exit 1
Expand All @@ -160,7 +160,7 @@ cmd_sync() {
-e "ssh -p $PORT -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" \
--exclude '*.tfevents*' \
"root@$HOST:$REMOTE_PATH" "$LOCAL_PATH"

echo "Sync finished."
}

Expand All @@ -184,4 +184,4 @@ case "$COMMAND" in
show_help
exit 1
;;
esac
esac