Skip to content

Update MjWarp and MuJoCo dependency#618

Merged
adenzler-nvidia merged 1 commit into
newton-physics:mainfrom
adenzler-nvidia:dev/adenzler/upgrade-package-v2
Aug 22, 2025
Merged

Update MjWarp and MuJoCo dependency#618
adenzler-nvidia merged 1 commit into
newton-physics:mainfrom
adenzler-nvidia:dev/adenzler/upgrade-package-v2

Conversation

@adenzler-nvidia

@adenzler-nvidia adenzler-nvidia commented Aug 22, 2025

Copy link
Copy Markdown
Member

Summary by CodeRabbit

  • Chores
    • Updated benchmarking environment dependencies to newer builds (including MuJoCo pre-release and mujoco_warp) to keep performance measurements current and installations stable.
    • Improves reliability of local and CI benchmark runs without manual pinning.
    • No changes to product behavior, UI, or APIs; regular usage is unaffected.
    • Documentation remains unchanged; this update targets benchmarking setup only.

Signed-off-by: Alain Denzler <adenzler@nvidia.com>
@coderabbitai

coderabbitai Bot commented Aug 22, 2025

Copy link
Copy Markdown
Contributor
📝 Walkthrough

Walkthrough

Updates asv.conf.json install_command pins: mujoco pre-release bumped from 3.3.6.dev793087071 to 3.3.6.dev797870883; mujoco_warp commit updated from 6ee6a67 to baeb10e. No other changes.

Changes

Cohort / File(s) Summary
Benchmark env config
asv.conf.json
Updated install_command: bumped mujoco pre-release version and updated mujoco_warp pinned commit SHA; all other entries unchanged.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested reviewers

  • shi-eric

Tip

🔌 Remote MCP (Model Context Protocol) integration is now available!

Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats.

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: Path: .coderabbit.yml

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between e15cac7 and 0fe6517.

⛔ Files ignored due to path filters (1)
  • uv.lock is excluded by !**/*.lock
📒 Files selected for processing (1)
  • asv.conf.json (1 hunks)
⏰ Context from checks skipped due to timeout of 900000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: Run GPU Unit Tests on AWS EC2 (Pull Request)
  • GitHub Check: Run GPU Benchmarks (Pull Request)
  • GitHub Check: run-newton-tests / newton-unittests (windows-latest)
  • GitHub Check: run-newton-tests / newton-unittests (ubuntu-latest)
🔇 Additional comments (1)
asv.conf.json (1)

20-20: Verify MuJoCo dev-build wheels and mujoco_warp compatibility

We’ve confirmed that the 3.3.6.dev797870883 wheel is published under the /mujoco/ subdirectory on py.mujoco.org and can be downloaded via pip. Before merging, please verify:

  • All CI targets (Linux x86_64, Linux aarch64) and every CPython version you benchmark have a matching wheel under the simple index at https://py.mujoco.org/mujoco/simple/mujoco/
  • No breaking API/ABI changes in this dev build affect mujoco_warp at its pinned commit

Optional: for reproducible ASV baselines, consider pinning to the latest tagged/stable MuJoCo release in CI and reserving dev builds for local experiments.

You can run this check (no installs) to confirm wheel availability:

#!/usr/bin/env bash
set -euo pipefail

# 1) Confirm dev wheel is listed under /mujoco/simple/mujoco/
curl -fsSL https://py.mujoco.org/mujoco/simple/mujoco/ \
  | rg -q '3\.3\.6\.dev797870883' \
  && echo "MuJoCo 3.3.6.dev797870883: INDEXED" \
  || { echo "MuJoCo 3.3.6.dev797870883: MISSING"; exit 1; }

# 2) Dry-run download via the correct find-links URL
python -m pip download --only-binary=:all: \
  -d /tmp/mj_wheels -f https://py.mujoco.org/mujoco/ \
  "mujoco==3.3.6.dev797870883"

# 3) Inspect downloaded files (ensure you see wheels for each arch/CPython)
ls -lh /tmp/mj_wheels

Please confirm all runners and versions pass, and that mujoco_warp works as expected against this dev build.

Comment thread asv.conf.json
@preist-nvidia preist-nvidia self-requested a review August 22, 2025 12:01
Comment thread asv.conf.json
@adenzler-nvidia adenzler-nvidia enabled auto-merge (squash) August 22, 2025 12:05
@codecov

codecov Bot commented Aug 22, 2025

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ All tests successful. No failed tests found.

📢 Thoughts on this report? Let us know!

@adenzler-nvidia adenzler-nvidia merged commit 9d1b1d1 into newton-physics:main Aug 22, 2025
12 checks passed
eric-heiden pushed a commit to eric-heiden/newton that referenced this pull request Jan 28, 2026
Signed-off-by: Alain Denzler <adenzler@nvidia.com>
mmacklin pushed a commit to mmacklin/newton that referenced this pull request Apr 7, 2026
Signed-off-by: Alain Denzler <adenzler@nvidia.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants