Skip to content

Commit a513123

Browse files
committed
migration
1 parent dc1e223 commit a513123

38 files changed

Lines changed: 3061 additions & 1664 deletions

.github/workflows/perf-smoke-test.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Architecture:
1717
# config → load isaacsim version from config.yaml (ubuntu-latest)
1818
# bench → per-task/backend matrix, each pulling the CI image and running
19-
# benchmark_non_rl.py inside Docker (self-hosted, gpu)
19+
# perf_runtime.py inside Docker (self-hosted, gpu)
2020
# aggregate → download all bench artifacts, run oracle, update baselines
2121
# (self-hosted, gpu)
2222
#
@@ -283,9 +283,9 @@ jobs:
283283
docker rm -f "${CONTAINER_NAME}" 2>/dev/null || true
284284
285285
# Build optional render backend preset token for the CLI.
286-
# benchmark_non_rl.py accepts Hydra-style preset tokens (no leading dashes).
286+
# perf_runtime.py accepts Hydra-style preset tokens (no leading dashes).
287287
# Physics is selected via the sim_backend token; render via renderer= token.
288-
# TODO: Update these tokens once benchmark_non_rl.py CLI flags are finalised.
288+
# TODO: Update these tokens once perf_runtime.py CLI flags are finalised.
289289
HYDRA_ARGS="${{ matrix.hydra_args }}"
290290
291291
# Overlay the PR checkout when running a pulled (prebuilt) env image, so the
@@ -323,11 +323,12 @@ jobs:
323323
cd /workspace/isaaclab
324324
rm -f _isaac_sim
325325
ln -s /isaac-sim _isaac_sim
326-
./isaaclab.sh -p scripts/benchmarks/benchmark_non_rl.py \
326+
./isaaclab.sh -p tools/perf_smoke_test/perf_runtime.py \
327327
--task '${TASK_ID}' \
328328
--num_envs ${{ matrix.num_envs }} \
329329
--num_frames ${{ matrix.num_frames }} \
330-
--benchmark_backend json \
330+
--warmup_frames ${{ matrix.warmup_frames }} \
331+
--benchmark_formatter schema \
331332
--output_path /tmp/bench_out \
332333
${{ matrix.seed != '' && format('--seed {0}', matrix.seed) || '' }} \
333334
${HYDRA_ARGS}
@@ -429,11 +430,12 @@ jobs:
429430
cd /workspace/isaaclab
430431
rm -f _isaac_sim
431432
ln -s /isaac-sim _isaac_sim
432-
./isaaclab.sh -p scripts/benchmarks/benchmark_non_rl.py \
433+
./isaaclab.sh -p tools/perf_smoke_test/perf_runtime.py \
433434
--task '${TASK_ID}' \
434435
--num_envs ${{ matrix.num_envs }} \
435436
--num_frames ${{ matrix.num_frames }} \
436-
--benchmark_backend json \
437+
--warmup_frames ${{ matrix.warmup_frames }} \
438+
--benchmark_formatter schema \
437439
--output_path /tmp/bench_out \
438440
${{ matrix.seed != '' && format('--seed {0}', matrix.seed) || '' }} \
439441
${HYDRA_ARGS}

scripts/benchmarks/benchmark_non_rl.py

Lines changed: 0 additions & 234 deletions
This file was deleted.

0 commit comments

Comments
 (0)