1. 22 Aug, 2025 6 commits
    • ooctipus's avatar
      Disallows string value written in sb3_ppo_cfg.yaml get evaluated in process_sb3_cfg (#3110) · 81618f21
      ooctipus authored
      # Description
      
      This PR adds stricter interpretation rules to value specified in
      sb3_ppo_cfg.yaml, disallowing eval on any dict, which my contain
      arbitrary code that makes program vulnerable.
      
      Now, `eval` is got rid of, only str that start with `nn.` can be used to
      only import the module from torch.nn. That seems to cover all usage for
      lab so far, I can make more accommodations if there are more cases but
      it seems like it is currently sufficient.
      
      Fixes # (issue)
      
      <!-- As a practice, it is recommended to open an issue to have
      discussions on the proposed pull request.
      This makes it easier for the community to keep track of what is being
      developed or added, and if a given feature
      is demanded by more than one party. -->
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Screenshots
      
      Please attach before and after screenshots of the change if applicable.
      
      <!--
      Example:
      
      | Before | After |
      | ------ | ----- |
      | _gif/png before_ | _gif/png after_ |
      
      To upload images to a PR -- simply drag and drop an image while in edit
      mode and it should upload the image directly. You can then paste that
      source into the above before/after sections.
      -->
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      
      ---------
      Signed-off-by: 's avatarooctipus <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarMayank Mittal <12863862+Mayankm96@users.noreply.github.com>
      Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
      81618f21
    • Sixiang Chen's avatar
      Fix: observation space Dict for non-concatenated groups only keeps last term (#3134) · aec72bdc
      Sixiang Chen authored
      # Description
      
      This PR fixes a bug in the observation space construction for
      non-concatenated groups in `ManagerBasedRLEnv._configure_gym_env_spaces`
      method. Previously, only the last term in each group was included in the
      Dict, causing loss of observation information. Now, all terms are
      correctly added to the group Dict.
      
      Fixes #3133 
      
      <!-- As a practice, it is recommended to open an issue to have
      discussions on the proposed pull request.
      This makes it easier for the community to keep track of what is being
      developed or added, and if a given feature
      is demanded by more than one party. -->
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      
      <!--
      Example:
      
      | Before | After |
      | ------ | ----- |
      | _gif/png before_ | _gif/png after_ |
      
      To upload images to a PR -- simply drag and drop an image while in edit
      mode and it should upload the image directly. You can then paste that
      source into the above before/after sections.
      -->
      aec72bdc
    • James Tigue's avatar
      Adds `SensorBase` tests (#3160) · 65d6087f
      James Tigue authored
      # Description
      
      Adds tests for SensorBase
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - New feature (non-breaking change which adds functionality)
      
      ## Checklist
      
      - [ ] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [ ] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      
      ---------
      Signed-off-by: 's avatarJames Tigue <166445701+jtigue-bdai@users.noreply.github.com>
      Signed-off-by: 's avatarooctipus <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      65d6087f
    • matthewtrepte's avatar
      Update render preset balanced and performance modes to... · 1401b50f
      matthewtrepte authored
      Update render preset balanced and performance modes to rtx.indirrectDiffuse.enabled to false (#3240)
      
      # Description
      
      <!--
      Thank you for your interest in sending a pull request. Please make sure
      to check the contribution guidelines.
      
      Link:
      https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html
      -->
      
      Update render preset balanced and performance modes to
      rtx.indirrectDiffuse.enabled to false, the original value from Isaac Lab
      2.1.
      
      <!-- As a practice, it is recommended to open an issue to have
      discussions on the proposed pull request.
      This makes it easier for the community to keep track of what is being
      developed or added, and if a given feature
      is demanded by more than one party. -->
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      - New feature (non-breaking change which adds functionality)
      - Breaking change (fix or feature that would cause existing
      functionality to not work as expected)
      - This change requires a documentation update
      
      ## Screenshots
      
      Please attach before and after screenshots of the change if applicable.
      
      <!--
      Example:
      
      | Before | After |
      | ------ | ----- |
      | _gif/png before_ | _gif/png after_ |
      
      To upload images to a PR -- simply drag and drop an image while in edit
      mode and it should upload the image directly. You can then paste that
      source into the above before/after sections.
      -->
      
      ## Checklist
      
      - [ ] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [ ] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      1401b50f
    • Maurice Rahme's avatar
      Fixes termination term effort limit check logic (#3163) · a60168a2
      Maurice Rahme authored
      # Description
      
      Fix the logic in `joint_effort_out_of_limit()`; this function aims to
      detect effort limit violations by comparing the desired (computed)
      effort against the applied effort, noting that the simulator clips
      applied torque to the limit assign on creation.
      
      Originally, the logic was written such that if the applied and computed
      torques are equal, then a violation has occurred. However, this is wrong
      as shown by the below example:
      
      ```python
      from isaaclab.managers import SceneEntityCfg
      from isaaclab.envs.mdp.terminations import joint_effort_out_of_limit
      
      env = ...  # any ManagerBasedRLEnv with an Articulation named "robot"
      cfg = SceneEntityCfg(name="robot", joint_ids=[0])  # single joint for clarity
      art = env.scene["robot"]
      
      # Case A: no clipping (should be False but returns True now)
      art.data.computed_torque[:] = 0.0
      art.data.applied_torque[:] = 0.0
      assert joint_effort_out_of_limit(env, cfg).item() is False  # CURRENT: True (bug)
      
      # Case B: clipping (should be True but returns False now)
      art.data.computed_torque[:] = 100.0
      art.data.applied_torque[:] = 50.0  # pretend actuator clipped to ±50
      assert joint_effort_out_of_limit(env, cfg).item() is True   # CURRENT: False (bug)
      
      ```
      
      The solution is hence simply to flip the limit detection logic.
      
      Fixes #3155
      
      
      ## Type of change
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation (N/A)
      - [x] My changes generate no new warnings
      - [x] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file (N/A)
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      a60168a2
    • Soowan Park's avatar
      Sets profiler backend to NVTX by default (#3238) · 6f605a8d
      Soowan Park authored
      # Description
      
      We found that performance overhead varies depending on the profiler
      backend, even when profiling is not enabled.
      For optimization, we changed the default profiler backend to NVTX.
      Depending on the test case, we observed a performance improvement of
      about 1–12%.
      
      ## Type of change
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      - [x] I have done this task
      6f605a8d
  2. 21 Aug, 2025 1 commit
    • Kelly Guo's avatar
      Fixes new typing-inspection dependency license (#3237) · b8167326
      Kelly Guo authored
      # Description
      
      A new dependency was picked up by the license checker that has an
      UNKNOWN license listed. This change adds the license to the exceptions
      list since it has a MIT license and adds an acknowledgement to the
      license header.
      
      ## Type of change
      - This change requires a documentation update
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      b8167326
  3. 20 Aug, 2025 1 commit
    • matthewtrepte's avatar
      Disables rate limit for headless app (#3219) · 0d520b2f
      matthewtrepte authored
      # Description
      
      <!--
      Thank you for your interest in sending a pull request. Please make sure
      to check the contribution guidelines.
      
      Link:
      https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html
      -->
      
      For some simple cases, disabling rate limit in the runloop can help
      improve performance in headless mode.
      Follow PR to https://github.com/isaac-sim/IsaacLab/pull/3089, which only
      updated it for rendering headless app.
      However, this also impacts non-rendering workflows, so adding it to the
      default headless app as well.
      
      <!-- As a practice, it is recommended to open an issue to have
      discussions on the proposed pull request.
      This makes it easier for the community to keep track of what is being
      developed or added, and if a given feature
      is demanded by more than one party. -->
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      
      ---------
      Signed-off-by: 's avatarmatthewtrepte <mtrepte@nvidia.com>
      0d520b2f
  4. 19 Aug, 2025 1 commit
    • Antoine RICHARD's avatar
      Managed environments actions / observations descriptions (#2730) · b8710f40
      Antoine RICHARD authored
      # Description
      
      Experimental branch to generate observations and actions descriptions
      from managed environments.
      
      ## Type of change
      
      - New feature (non-breaking change which adds functionality)
      - This change requires a documentation update
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Signed-off-by: 's avatarooctipus <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      b8710f40
  5. 18 Aug, 2025 1 commit
    • Kelly Guo's avatar
      Disables rate limit for headless rendering app (#3089) · 00249505
      Kelly Guo authored
      # Description
      
      For some simple cases, disabling rate limit in the runloop can help
      improve performance for rendering.
      Nevertheless, we should not need to enable rate limit in headless cases.
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      - New feature (non-breaking change which adds functionality)
      
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      00249505
  6. 17 Aug, 2025 1 commit
    • Louis LE LAY's avatar
      Adds basic validation tests for scale-based randomization ranges (#3058) · f20d74c5
      Louis LE LAY authored
      # Description
      
      While working on a task I made a tiny typo in the scale randomization
      range for the stiffness-gain parameter. The robot still spawned, but its
      behaviour was utterly bizarre. It only took a minute to spot the
      mistake, yet it made me realize we have no guard-rails for this sort of
      edge case.
      
      This PR introduces a lightweight check that verifies, when
      operation=="scale", the lower bound is non-negative and the upper bound
      is not smaller than the lower one. Right now I cover the most common
      parameters (stiffness, damping, mass, tendon gains, etc.), basically
      anything that must stay positive to make physical sense.
      
      If you’d like the same safeguard applied to other parameter types just
      let me know and I’ll happily extend the patch.
      
      ## Type of change
      
      - Bug fix (non-breaking change which fixes an issue)
      - New feature (non-breaking change which adds functionality)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [x] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Signed-off-by: 's avatarLouis LE LAY <le.lay.louis@gmail.com>
      Signed-off-by: 's avatarooctipus <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarlouislelay <louislelay@pal-robotics.com>
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      f20d74c5
  7. 16 Aug, 2025 3 commits
    • Pascal Roth's avatar
      Updates CodeOwners to be more fine-grained (#3090) · c445da82
      Pascal Roth authored
      # Description
      
      Updates CodeOwners to be more fine-grained
      
      ## Type of change
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [ ] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [ ] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      c445da82
    • Mayank Mittal's avatar
      Adapts FAQ section in docs with Isaac Sim open-sourcing (#3105) · 85d75185
      Mayank Mittal authored
      # Description
      
      Some of the information in FAQ is now outdated since Isaac Sim is
      open-sourced. This MR removes that part but also adds more explaination
      on the goals of Isaac Lab.
      
      ## Type of change
      
      - This change requires a documentation update
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Signed-off-by: 's avatarMayank Mittal <12863862+Mayankm96@users.noreply.github.com>
      Co-authored-by: 's avatarCopilot <175728472+Copilot@users.noreply.github.com>
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      85d75185
    • Mayank Mittal's avatar
      Adds RSL-RL symmetry example for cartpole and ANYmal locomotion (#3057) · 71608f94
      Mayank Mittal authored
      # Description
      
      This MR introduces the following:
      
      * An `agent` argument to all scripts to allow selecting different entry
      points (each then get resolved to their respective settings file).
      * Symmetry function for ANYmal robot for the locomotion task and
      cartpole balancing task
      * Documentation on how to configure RL training agent using gym
      resgistry
      
      Fixes #2835
      
      ## Type of change
      
      - New feature (non-breaking change which adds functionality)
      - This change requires a documentation update
      
      ## Screenshots
      
      ### Cartpole
      
      ```bash
      # without symmetry
      ./isaaclab.sh -p scripts/reinforcement_learning/rsl_rl/train.py --task Isaac-Cartpole-v0 --headless --agent rsl_rl_with_symmetry_cfg_entry_point --run_name ppo_with_no_symmetry agent.algorithm.symmetry_cfg.use_data_augmentation=false
      
      # with symmetry
      ./isaaclab.sh -p scripts/reinforcement_learning/rsl_rl/train.py --task Isaac-Cartpole-v0--headless --agent rsl_rl_with_symmetry_cfg_entry_point --run_name ppo_with_symmetry_data_augmentation  agent.algorithm.symmetry_cfg.use_data_augmentation=true
      ```
      
      | Isaac-Cartpole-v0 (pink w/o symmetry, blue w/ symmetry) |
      | ------ |
      | <img width="823" height="421" alt="image"
      src="https://github.com/user-attachments/assets/9c33db99-0d79-4c1d-b437-e01275d613b5"
      /> |
      
      ### Locomotion
      
      ```bash
      
      # without symmetry
      ./isaaclab.sh -p scripts/reinforcement_learning/rsl_rl/train.py --task Isaac-Velocity-Rough-Anymal-D-v0 --headless --agent rsl_rl_with_symmetry_cfg_entry_point --run_name ppo_with_no_symmetry agent.algorithm.symmetry_cfg.use_data_augmentation=false
      
      # with symmetry
      ./isaaclab.sh -p scripts/reinforcement_learning/rsl_rl/train.py --task Isaac-Velocity-Rough-Anymal-D-v0 --headless --agent rsl_rl_with_symmetry_cfg_entry_point --run_name ppo_with_symmetry_data_augmentation  agent.algorithm.symmetry_cfg.use_data_augmentation=true
      ```
      
      | Isaac-Velocity-Rough-Anymal-D-v0 (green w/o symmetry, purple w/
      symmetry) |
      | ------ |
      | <img width="1241" height="414" alt="image"
      src="https://github.com/user-attachments/assets/625c125d-db9f-4006-9a62-0d55701a9407"
      /> |
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      71608f94
  8. 15 Aug, 2025 2 commits
    • Ziqi Fan's avatar
      Changes the expected input of checkpoint in rsl-rl to an absolute path in... · 5fdd8b9f
      Ziqi Fan authored
      Changes the expected input of checkpoint in rsl-rl to an absolute path in documentation to avoid ambiguity (#3151)
      
      # Description
      
      If the user directly enters model_xxx.pt, an error will be reported. The
      user should be guided to enter a path
      
      ## Type of change
      
      - This change requires a documentation update
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      5fdd8b9f
    • James Tigue's avatar
      Adds contact point location reporting to ContactSensor (#2842) · 626e08e1
      James Tigue authored
      # Description
      
      This PR: 
      
      - Adds ContactSensorCfg.track_contact_points to toggle tracking of
      contact point locations between sensor bodies and filtered bodies.
      - Adds ContactSensorCfg.max_contact_data_per_prim to configure the
      maximum amount of contacts per sensor body.
      - Adds ContactSensorData.contact_pos_w data field for tracking contact
      point locations.
      
      Fixes # (issue)
      
      <!-- As a practice, it is recommended to open an issue to have
      discussions on the proposed pull request.
      This makes it easier for the community to keep track of what is being
      developed or added, and if a given feature
      is demanded by more than one party. -->
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - New feature (non-breaking change which adds functionality)
      
      ## Checklist
      
      - [ ] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [ ] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Signed-off-by: 's avatarJames Tigue <166445701+jtigue-bdai@users.noreply.github.com>
      Signed-off-by: 's avatarKelly Guo <kellyg@nvidia.com>
      Signed-off-by: 's avatarooctipus <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarAshwin Khadke <133695616+akhadke-bdai@users.noreply.github.com>
      Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      626e08e1
  9. 14 Aug, 2025 3 commits
    • Emily Sturman's avatar
      Fixes IndexError in reset_joints_by_scale and reset_joints_by_offset (#2949) · 089015fc
      Emily Sturman authored
      # Description
      
      Fixes the IndexError caused by simultaneously indexing env_ids and
      joint_ids in `reset_joints_by_scale` and `reset_joints_by_offset`.
      
      Fixes # [2948](https://github.com/isaac-sim/IsaacLab/issues/2948)
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Signed-off-by: 's avatarKelly Guo <kellyg@nvidia.com>
      Signed-off-by: 's avatarEmily Sturman <emily@sturman.org>
      Signed-off-by: 's avatarooctipus <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
      Co-authored-by: 's avatarMayank Mittal <12863862+Mayankm96@users.noreply.github.com>
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      089015fc
    • matthewtrepte's avatar
      Updates app pathing for user provided rendering preset mode (#3148) · 5ca0c323
      matthewtrepte authored
      # Description
      
      <!--
      Thank you for your interest in sending a pull request. Please make sure
      to check the contribution guidelines.
      
      Link:
      https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html
      -->
      
      Update rendering preset mode pathing to be compatible when an experience
      file is set.
      
      <!-- As a practice, it is recommended to open an issue to have
      discussions on the proposed pull request.
      This makes it easier for the community to keep track of what is being
      developed or added, and if a given feature
      is demanded by more than one party. -->
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Screenshots
      
      Please attach before and after screenshots of the change if applicable.
      
      <!--
      Example:
      
      | Before | After |
      | ------ | ----- |
      | _gif/png before_ | _gif/png after_ |
      
      To upload images to a PR -- simply drag and drop an image while in edit
      mode and it should upload the image directly. You can then paste that
      source into the above before/after sections.
      -->
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      Signed-off-by: 's avatarooctipus <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      5ca0c323
    • ooctipus's avatar
      Fixes Termination Manager logging to report aggregated percentage of... · 8dabd3f1
      ooctipus authored
      Fixes Termination Manager logging to report aggregated percentage of environments done due to each term.  (#3107)
      
      # Description
      
      Currently Termination Manager write current step's done count for each
      term if reset is detected. This leads to two problem.
      1. User sees different counts just by varying num_envs
      2. the count can be over-count or under-count depending on when reset
      happens, as pointed out in #2977 (Thanks, @Kyu3224)
      
      The cause of the bug is because we are reporting current step status
      into a buffer that suppose to record episodic done. So instead of write
      the entire buffer base on current value, we ask the update to respect
      the non-reseting environment's old value, and instead of reporting
      count, we report percentage of environment that was done due to the
      particular term.
      
      Test on Isaac-Velocity-Rough-Anymal-C-v0
      
      Before fix:
      <img width="786" height="323" alt="Screenshot from 2025-08-06 22-16-20"
      src="https://github.com/user-attachments/assets/4838d612-7f0e-4232-a07e-688b547e91db"
      />
      Red: num_envs = 4096, Orange: num_envs = 1024
      
      After fix:
      
      <img width="786" height="323" alt="Screenshot from 2025-08-06 22-16-12"
      src="https://github.com/user-attachments/assets/e6e55c21-17ed-42ca-8d94-a19d08611f86"
      />
      Red: num_envs = 4096, Orange: num_envs = 1024
      
      Note that curve of the same color ran on same seed, and curves matched
      exactly, the only difference is the data gets reported in termination.
      The percentage version is a lot more clear in conveying how agent
      currently fails, and how much percentage of agent fails, and shows that
      increasing num_envs to 4096 helps improve agent avoiding termination by
      `base_contact` much quicker than num_envs=1024. Such message is a bit
      hard to tell in first image.
      
      <!--
      Example:
      
      | Before | After |
      | ------ | ----- |
      | _gif/png before_ | _gif/png after_ |
      
      To upload images to a PR -- simply drag and drop an image while in edit
      mode and it should upload the image directly. You can then paste that
      source into the above before/after sections.
      -->
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [ ] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      8dabd3f1
  10. 13 Aug, 2025 1 commit
    • ooctipus's avatar
      Fixs isaaclab.sh to detect isaacsim_version accurately 4.5 or >= 5.0 (#3139) · f70e695f
      ooctipus authored
      # Description
      
      Current is_isaacsim_version_4_5() sometimes mis-detects 5.0 when running
      4.5 (e.g., Docker/symlinked installs), causing the conda bootstrap to
      pick Python 3.11 instead of 3.10.
      
      This pr ensures determining the isaacsim version following below steps
      
      1. Read ${ISAACLAB_PATH}/_isaac_sim/VERSION (symlink/binary install).
      
      2. If unknown, import isaacsim and read ../../VERSION next to the
      package. (pip installation)
      
      3. If still unknown, fall back to
      importlib.metadata.version("isaacsim").
      
      I tested locally to work with 4.5 pip or binary install.
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Screenshots
      
      Please attach before and after screenshots of the change if applicable.
      
      <!--
      Example:
      
      | Before | After |
      | ------ | ----- |
      | _gif/png before_ | _gif/png after_ |
      
      To upload images to a PR -- simply drag and drop an image while in edit
      mode and it should upload the image directly. You can then paste that
      source into the above before/after sections.
      -->
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      f70e695f
  11. 08 Aug, 2025 5 commits
    • Ashwin Varghese Kuruttukulam's avatar
      Sets joint_friction_coeff only for selected physx_env_ids (#3119) · 5f71ff47
      Ashwin Varghese Kuruttukulam authored
      # Bugfix
      
      Previously, self._data.joint_dynamic_friction_coeff was being set for
      all environments, regardless of the intended targets. This behavior is
      incorrect — the friction coefficient should only be set for the
      specified physx_env_ids.
      Co-authored-by: 's avatarooctipus <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
      5f71ff47
    • Hunter Hansen's avatar
      Adds improved readout from install_deps.py (#3104) · 538b649b
      Hunter Hansen authored
      # Description
      This adds improved readout from the subprocesses in `install_deps.py`.
      It will now print the output instead of printing everything at once when
      the process is finished. It also has improved error handling. This will
      help users to have a better understanding of their build process and
      more easily resolve issues.
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - New feature (non-breaking change which adds functionality)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      
      ---------
      Signed-off-by: 's avatarHunter Hansen <50837800+hhansen-bdai@users.noreply.github.com>
      Signed-off-by: 's avatarKelly Guo <kellyg@nvidia.com>
      Co-authored-by: 's avatarCopilot <175728472+Copilot@users.noreply.github.com>
      Co-authored-by: 's avatarKelly Guo <kellyg@nvidia.com>
      538b649b
    • Kelly Guo's avatar
      Updates release notes for 2.2 (#3121) · b3a59da3
      Kelly Guo authored
      # Description
      
      Updates the release notes docs with the latest release notes for 2.2 and
      some other minor documentation updates.
      Also fixes new issues with the license checker to add additional
      exceptions.
      
      Also using this change to trigger the documentation update for 2.2.
      
      ## Type of change
      
      - This change requires a documentation update
      
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      b3a59da3
    • Alexander Poddubny's avatar
      Fixes minor issues in CI (#3120) · 8c5b4680
      Alexander Poddubny authored
      # Description
      
      1. Changed test reporter for compatibility pipeline to generate HTML
      report
      2. Increased the number of reported logs for failed test cases to 50
      (max)
      3. Set execute permissions in the Dockerfile on the isaaclab.sh -
      sometimes the post-merge pipeline fails due to permissions
      4. Updated the default Isaac SIM version
      8c5b4680
    • Hunter Hansen's avatar
      Adds hf-xet license (#3116) · a4549680
      Hunter Hansen authored
      # Description
      It appears that `isaaclab` transitively depends on `hf-xet`, (a
      `huggingface`-developed data storage paradigm) via the following
      dependency chain:
      ```
      Collecting hf-xet<2.0.0,>=1.1.3 (from huggingface-hub<1.0,>=0.34.0->transformers->isaaclab==0.41.5)
      ```
      This results in a failing license check. This PR adds the relevant
      license from this [repo](https://github.com/huggingface/xet-core)
      
      **UPDATE:** I have also added the initialization of `FAILED_PACKAGES=0`
      in `license-check.yaml` in order to avoid the error I was encountering
      when no packages were failing:
      <img width="1461" height="210" alt="image"
      src="https://github.com/user-attachments/assets/5845626e-2e5c-493f-8356-ae00667ab9ea"
      />
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [ ] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      a4549680
  12. 06 Aug, 2025 3 commits
    • Kelly Guo's avatar
      Updates for release 2.2.0 · 46dff135
      Kelly Guo authored
      46dff135
    • Pascal Roth's avatar
      Fixes `anyio` license checking (#3091) · 1718ef6b
      Pascal Roth authored
      Fixes `anyio` license checking. Current return is UNKNOWN, actual
      license is MIT.
      
      - Bug fix (non-breaking change which fixes an issue)
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [x] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      1718ef6b
    • peterd-NV's avatar
      Fixes IsaacLab Mimic doc build warnings (#3065) · 60b67ff0
      peterd-NV authored
      Fixes warnings when building docs for IsaacLab Mimic by using `from __future__ import annotations` to allow Sphinx autodoc import.
      
      - Bug fix (non-breaking change which fixes an issue)
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      60b67ff0
  13. 05 Aug, 2025 5 commits
    • Kelly Guo's avatar
      Updates onnx and protobuf version due to vulnerabilities (#602) · 5bd32c94
      Kelly Guo authored
      # Description
      
      Updates onnx and protobuf versions as previous dependency versions had
      security vulnerabilities.
      
      To avoid onnx 1.16.1, we are updating onnx to 1.18.0
      To avoid protobuf 3.20.3, we are updating protobuf to 6.31.1
      
      Also included some minor updates to add one more flaky test annotation
      for test failure, and adding random_state to GaussianProcessRegressor to
      resolve another security risk for non-reproducible results.
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      5bd32c94
    • Pascal Roth's avatar
      Fixes `anyio` license checking (#3091) · 19b24c78
      Pascal Roth authored
      # Description
      
      Fixes `anyio` license checking. Current return is UNKNOWN, actual
      license is MIT.
      
      ## Type of change
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [x] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      19b24c78
    • peterd-NV's avatar
      Fixes IsaacLab Mimic doc build warnings (#3065) · f2d489d7
      peterd-NV authored
      # Description
      
      Fixes warnings when building docs for IsaacLab Mimic by using `from __future__ import annotations` to allow Sphinx autodoc import.
      
      ## Type of change
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      f2d489d7
    • Kelly Guo's avatar
      Changes to prepare for 2.2.0 release (#595) · 55cdaff1
      Kelly Guo authored
      # Description
      
      Several changes to prepare for the Isaac Lab 2.2 release:
      
      - updating staging server to production
      - removing mentions of feature/isaacsim_5_0 branch as those will now be
      part of `main`
      - updates version to 2.2.0 from 2.1.1
      
      ## Type of change
      
      - This change requires a documentation update
      
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      55cdaff1
    • Kelly Guo's avatar
      Fixes issues with consecutive python exe calls in isaaclab.bat (#598) · 49de5049
      Kelly Guo authored
      # Description
      
      As reported in https://github.com/isaac-sim/IsaacLab/pull/3071, we have
      some issues with the isaaclab.bat script when multiple calls to
      `!python_exe!` are called, resulting in ` '!python_exe!' is not
      recognized as an internal or external command` error messages. This fix
      uses `call` command to expand `!python_exe!` to and correctly execute
      the commands.
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      49de5049
  14. 03 Aug, 2025 1 commit
    • Kelly Guo's avatar
      Adds flaky annotation for tests (#596) · f5390895
      Kelly Guo authored
      # Description
      
      Adds the flaky module to allow for marking some non-deterministic tests
      as flaky. This allows us to specify number of retries for specific test
      cases and how many passes are needed to determine the test is marked as
      pass or fail.
      
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      f5390895
  15. 01 Aug, 2025 2 commits
    • Kelly Guo's avatar
      Fixes timeouts for environment tests (#591) · e5135672
      Kelly Guo authored
      # Description
      
      Restructures the environment test to include new Forge environments as
      part of the Factory tests. Also fixes some timeouts for tests to make
      sure they can complete.
      
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      e5135672
    • Michael Gussert's avatar
      dadf04cb
  16. 31 Jul, 2025 4 commits
    • Kelly Guo's avatar
      Updates ordering of instructions for installation (#590) · e5e0792f
      Kelly Guo authored
      # Description
      
      Updates ordering to first update pip then install torch in pip
      installation workflows, as some users are running into issues when
      installing torch on older pip versions.
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      - This change requires a documentation update
      
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      e5e0792f
    • Kelly Guo's avatar
      Fixes test timeouts (#579) · a6818593
      Kelly Guo authored
      # Description
      
      Some tests are now taking longer to run, especially the environment
      ones. Increasing some timeouts here to allow tests to complete.
      
      ## Type of change
      
      <!-- As you go through the list, delete the ones that are not
      applicable. -->
      
      - Bug fix (non-breaking change which fixes an issue)
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [ ] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [ ] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      <!--
      As you go through the checklist above, you can mark something as done by
      putting an x character in it
      
      For example,
      - [x] I have done this task
      - [ ] I have not done this task
      -->
      
      ---------
      Signed-off-by: 's avatarKelly Guo <kellyg@nvidia.com>
      a6818593
    • Michael Noseworthy's avatar
      Adds FORGE tasks for contact-rich manipulation with force sensing to IsaacLab (#2968) · 553f1f5d
      Michael Noseworthy authored
      This MR adds new tasks which extend the `Factory` tasks to include:
      1. Force sensing: Add observations for force experienced by the
      end-effector.
      2. Excessive force penalty: Add an option to penalize the agent for
      excessive contact forces.
      3. Dynamics randomization: Randomize controller gains, asset properties
      (friction, mass), and dead-zone.
      4. Success prediction: Add an extra action that predicts task success.
      
      The new tasks are: `Isaac-Forge-PegInsert-Direct-v0`,
      `Isaac-Forge-GearMesh-Direct-v0`, and `Isaac-Forge-NutThread-Direct-v0`
      
      - New feature (non-breaking change which adds functionality)
      - This change requires a documentation update
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Signed-off-by: 's avatarKelly Guo <kellyguo123@hotmail.com>
      Co-authored-by: 's avatarOcti Zhang <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarKelly Guo <kellyguo123@hotmail.com>
      553f1f5d
    • Michael Noseworthy's avatar
      Adds FORGE tasks for contact-rich manipulation with force sensing to IsaacLab (#2968) · 77a64984
      Michael Noseworthy authored
      # Description
      
      This MR adds new tasks which extend the `Factory` tasks to include:
      1. Force sensing: Add observations for force experienced by the
      end-effector.
      2. Excessive force penalty: Add an option to penalize the agent for
      excessive contact forces.
      3. Dynamics randomization: Randomize controller gains, asset properties
      (friction, mass), and dead-zone.
      4. Success prediction: Add an extra action that predicts task success.
      
      The new tasks are: `Isaac-Forge-PegInsert-Direct-v0`,
      `Isaac-Forge-GearMesh-Direct-v0`, and `Isaac-Forge-NutThread-Direct-v0`
      
      ## Type of change
      
      - New feature (non-breaking change which adds functionality)
      - This change requires a documentation update
      
      ## Checklist
      
      - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
      `./isaaclab.sh --format`
      - [x] I have made corresponding changes to the documentation
      - [x] My changes generate no new warnings
      - [ ] I have added tests that prove my fix is effective or that my
      feature works
      - [x] I have updated the changelog and the corresponding version in the
      extension's `config/extension.toml` file
      - [x] I have added my name to the `CONTRIBUTORS.md` or my name already
      exists there
      
      ---------
      Signed-off-by: 's avatarKelly Guo <kellyguo123@hotmail.com>
      Co-authored-by: 's avatarOcti Zhang <zhengyuz@nvidia.com>
      Co-authored-by: 's avatarKelly Guo <kellyguo123@hotmail.com>
      77a64984