Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raises exceptions from initialization callbacks inside SimContext #2166

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

oahmednv
Copy link
Contributor

Description

Handling exceptions when raised inside the initialization callbacks

Fixes #1025

Type of change

  • Bug fix (non-breaking change which fixes an issue)

Checklist

  • I have run the pre-commit checks 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

Copy link
Contributor

@Mayankm96 Mayankm96 left a comment

Choose a reason for hiding this comment

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

Since all the callbacks fail/succeed after the simulation starts playing (i.e. after we do sim.reset() or sim.play(), I think we can get away with doing the checks at precisely those two locations. What do you think?

For example, we can move the check down to after we call super().reset inside sim.reset.

Also we can show the traceback of the error instead of just re-raising the exception as that can guide better towards where the error came from. You can use this function for that: https://docs.python.org/3/library/traceback.html#traceback.format_exc

Small note: We added callback inside manager base as well so we need to handle error there too 😬

self._backend = sim.backend
self._device = sim.device
# initialize the asset
self._initialize_impl()
Copy link
Contributor

Choose a reason for hiding this comment

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

Maybe do a try catch only over this call instead of the whole function? Don't see the need to wrap around the whole thing.

@@ -256,6 +256,9 @@ def __init__(self, cfg: SimulationCfg | None = None):
# you can reproduce the issue by commenting out this line and running the test `test_articulation.py`.
self._gravity_tensor = torch.tensor(self.cfg.gravity, dtype=torch.float32, device=self.cfg.device)

# define a global variable to store the exceptions raised in the callback stack
builtins.ISAACLAB_CALLBACK_EXCEPTION = None
Copy link
Contributor

Choose a reason for hiding this comment

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

This should be a list incase multiple callbacks failed? For instance, when the contact sensor callback fails because asset creation failed, the current code will overwrite the exception from asset class. The user will only get the error of contact sensor failure which doesn't help them get to the true issue.

Copy link
Contributor Author

@oahmednv oahmednv Mar 26, 2025

Choose a reason for hiding this comment

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

We only raise the first exception that occurred. How would you raise a list of exceptions otherwise?

Copy link
Contributor

Choose a reason for hiding this comment

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

Hm print all the errors through omni.log.error and raise the first one? But yeah you are right. Didn't see there was a "if none" check happening.

@Mayankm96
Copy link
Contributor

Also: We should make a ticket on Omniverse Kit side to exit threads more gracefully in standalone mode. What do you think? Can you take care of it please?

@oahmednv
Copy link
Contributor Author

Since all the callbacks fail/succeed after the simulation starts playing (i.e. after we do sim.reset() or sim.play(), I think we can get away with doing the checks at precisely those two locations. What do you think?

I saw some of the tests are failing through the render check. We can potentially remove it from the render call yes.

For example, we can move the check down to after we call super().reset inside sim.reset.

Also we can show the traceback of the error instead of just re-raising the exception as that can guide better towards where the error came from. You can use this function for that: https://docs.python.org/3/library/traceback.html#traceback.format_exc

The traceback is shown as well as the error

Small note: We added callback inside manager base as well so we need to handle error there too 😬

# check if we need to raise an exception that was raised in a callback
if builtins.ISAACLAB_CALLBACK_EXCEPTION is not None:
exception_to_raise = builtins.ISAACLAB_CALLBACK_EXCEPTION
builtins.ISAACLAB_CALLBACK_EXCEPTION = None
Copy link
Contributor

Choose a reason for hiding this comment

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

No particular need to reset it to None since the program should exit?

@Mayankm96 Mayankm96 changed the title Handling exceptions when raised inside the initialization callbacks Raises exceptions from initialization callbacks inside SimContext Mar 26, 2025
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.

[Proposal] Handle checks better inside initialization callback of assets and sensors
2 participants