[mujoco] Add native MyoSuite env families and validation#398
Open
Trinkle23897 wants to merge 26 commits intomainfrom
Open
[mujoco] Add native MyoSuite env families and validation#398Trinkle23897 wants to merge 26 commits intomainfrom
Trinkle23897 wants to merge 26 commits intomainfrom
Conversation
Trinkle23897
commented
Apr 16, 2026
| MYOSUITE_DIRECT_IDS: tuple[str, ...] = tuple( | ||
| _METADATA["direct_ids"] | ||
| ) # Re-exported for tests and public registration helpers. | ||
| MYOSUITE_EXPANDED_IDS: tuple[str, ...] = tuple( |
| import envpool.mujoco.dmc.registration # noqa: F401 | ||
| import envpool.mujoco.gym.registration # noqa: F401 | ||
| import envpool.mujoco.metaworld.registration # noqa: F401 | ||
| import envpool.mujoco.myosuite.registration # noqa: F401 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR finishes the native EnvPool MyoSuite integration on top of the earlier intake work.
Implemented surface:
TrackEnv, covering the full generated TrackEnv surfaceWhat landed:
envpool/mujoco/myosuite/Motivation and Context
The initial intake PR only pinned upstream assets and generated metadata. This follow-up closes the loop by registering and validating the actual native EnvPool runtime for the staged MyoSuite families.
The main implementation goal here is not a representative subset but the intended upstream task surfaces for:
myobasemyochallengemyodmTypes of changes
Implemented Tasks
TrackEnvsurface from generated metadataValidation
Run locally:
git diff --checkruff check envpool/mujoco/myosuite/native.py envpool/mujoco/myosuite/myobase_test.py envpool/mujoco/myosuite/myochallenge_test.py envpool/mujoco/myosuite/myodm_test.pybazel test --test_output=errors //envpool/mujoco:myosuite_myobase_test //envpool/mujoco:myosuite_myochallenge_test //envpool/mujoco:myosuite_myodm_testChecklist
make format(required)make lint(required)make bazel-testpass. (required)