You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes camera fast path logic and GPU buffer in dexsuite (isaac-sim#4776)
# Description
Fixes a bad merge of the camera class logic to check for when to enable
the fast paths.
Also fixes GPU buffer size that now needs to be increased for dexsuite
environments.
Fixes IMU tests and URDF converter logic.
Fixes teleop tests where patching wasn't working correctly with the new
lazy export mechanism.
Switches Factory and Forge environments to use timestamp logging to
avoid overwriting the same folder when running multiple training runs.
Removes omni.kit.pip_archive from our app files to avoid any version
conflicts between our and Kit's python dependencies.
## 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 read and understood the [contribution
guidelines](https://isaac-sim.github.io/IsaacLab/main/source/refs/contributing.html)
- [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: Octi Zhang <zhengyuz@nvidia.com>
- name: Copy Test Results from IsaacLab Tasks 2 Container
126
+
run: |
127
+
CONTAINER_NAME="isaac-lab-tasks-2-test-$$"
128
+
if docker ps -a | grep -q $CONTAINER_NAME; then
129
+
echo "Copying test results from IsaacLab Tasks 2 container..."
130
+
docker cp $CONTAINER_NAME:/workspace/isaaclab/tests/isaaclab-tasks-2-report.xml reports/ 2>/dev/null || echo "No test results to copy from IsaacLab Tasks 2 container"
- name: Copy Test Results from CUDA Issue Tests Container
309
+
run: |
310
+
CONTAINER_NAME="isaac-lab-cuda-issue-test-$$"
311
+
if docker ps -a | grep -q $CONTAINER_NAME; then
312
+
echo "Copying test results from CUDA Issue Tests container..."
313
+
docker cp $CONTAINER_NAME:/workspace/isaaclab/tests/cuda-issue-tests-report.xml reports/ 2>/dev/null || echo "No test results to copy from CUDA Issue Tests container"
0 commit comments