Source code for isaaclab_rl.skrl

# Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause

"""Wrapper to configure an environment instance to skrl environment.

The following example shows how to wrap an environment for skrl:

.. code-block:: python

    from isaaclab_rl.skrl import SkrlVecEnvWrapper

    env = SkrlVecEnvWrapper(env, ml_framework="torch")  # or ml_framework="jax"

Or, equivalently, by directly calling the skrl library API as follows:

.. code-block:: python

    from skrl.envs.torch.wrappers import wrap_env  # for PyTorch, or...
    from skrl.envs.jax.wrappers import wrap_env  # for JAX

    env = wrap_env(env, wrapper="isaaclab")

"""

# needed to import for type hinting: Agent | list[Agent]
from __future__ import annotations

from typing import TYPE_CHECKING, Literal

if TYPE_CHECKING:
    from isaaclab.envs import (
        DirectMARLEnv,
        DirectRLEnv,
        ManagerBasedRLEnv,
    )

"""
Vectorized environment wrapper.
"""


[docs] def SkrlVecEnvWrapper( env: ManagerBasedRLEnv | DirectRLEnv | DirectMARLEnv, ml_framework: Literal["torch", "jax", "jax-numpy"] = "torch", wrapper: Literal["auto", "isaaclab", "isaaclab-single-agent", "isaaclab-multi-agent"] = "isaaclab", ): """Wraps around Isaac Lab environment for skrl. This function wraps around the Isaac Lab environment. Since the wrapping functionality is defined within the skrl library itself, this implementation is maintained for compatibility with the structure of the extension that contains it. Internally it calls the :func:`wrap_env` from the skrl library API. Args: env: The environment to wrap around. ml_framework: The ML framework to use for the wrapper. Defaults to "torch". wrapper: The wrapper to use. Defaults to "isaaclab": leave it to skrl to determine if the environment will be wrapped as single-agent or multi-agent. Raises: ValueError: When the environment is not an instance of any Isaac Lab environment interface. ValueError: If the specified ML framework is not valid. Reference: https://skrl.readthedocs.io/en/latest/api/envs/wrapping.html """ # check that input is valid # NOTE: import here (not at module level) to avoid loading heavy env classes before Isaac Sim is initialized. from isaaclab.envs import DirectMARLEnv, DirectRLEnv, ManagerBasedRLEnv if not isinstance(env.unwrapped, (ManagerBasedRLEnv, DirectRLEnv, DirectMARLEnv)): raise ValueError( "The environment must be inherited from ManagerBasedRLEnv, DirectRLEnv or DirectMARLEnv. Environment type:" f" {type(env)}" ) # import statements according to the ML framework if ml_framework.startswith("torch"): from skrl.envs.wrappers.torch import wrap_env elif ml_framework.startswith("jax"): from skrl.envs.wrappers.jax import wrap_env else: ValueError( f"Invalid ML framework for skrl: {ml_framework}. Available options are: 'torch', 'jax' or 'jax-numpy'" ) # wrap and return the environment return wrap_env(env, wrapper)