-
Notifications
You must be signed in to change notification settings - Fork 276
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
Adds support for ISystemReset
in test fixture
#2647
Open
arjo129
wants to merge
6
commits into
main
Choose a base branch
from
arjo/feat/reset_test_fixture
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
This PR adds support for the Reset API to the test fixture. As `TestFixture` is one of the main ways one can get access to the ECM in python when trying to write some scripts for Deep Reinforcement Learning I realized that without `Reset` supported in the `TestFixture` API, end users would have a very hard time using our python APIs (which are actually quite nice). For reference I'm hacking a demo template here: https://github.com/arjo129/gz_deep_rl_experiments/tree/ionic Signed-off-by: Arjo Chakravarty <[email protected]>
arjo129
added a commit
that referenced
this pull request
Oct 11, 2024
This allows us to reset simulations without having to call into gz-transport making the code more readable from an external API. Depends on #2647 Signed-off-by: Arjo Chakravarty <[email protected]>
9 tasks
arjo129
changed the title
Adds support for Reset in test fixture
Adds support for Oct 11, 2024
ISystemReset
in test fixture
ahcorde
approved these changes
Oct 11, 2024
src/TestFixture.cc
Outdated
return *this; | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested change
Signed-off-by: Arjo Chakravarty <[email protected]>
Upon further examination I think this may break ABI cause we are adding a base class. I probably should port this to Gazebo J. |
iche033
reviewed
Oct 15, 2024
} | ||
), | ||
pybind11::return_value_policy::reference, | ||
"Wrapper around a system's post-update callback" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested change
"Wrapper around a system's post-update callback" | |
"Wrapper around a system's reset callback" |
19 tasks
Signed-off-by: Arjo Chakravarty <[email protected]>
…ebosim/gz-sim into arjo/feat/reset_test_fixture
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.
🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸
🎉 New feature
Closes #
Summary
This PR adds support for the Reset API to the test fixture. As
TestFixture
is one of the main ways one can get access to the ECM in python when trying to write some scripts for Deep Reinforcement Learning I realized that withoutReset
supported in theTestFixture
API, end users would have a very hard time using our python APIs (which are actually quite nice). For reference I'm hacking a demo template here (its still barebones):https://github.com/arjo129/gz_deep_rl_experiments/tree/ionic
Test it
I've added a test in #2648, but that includes some additional APIs to improve usability.
Checklist
codecheck
passed (See contributing)Note to maintainers: Remember to use Squash-Merge and edit the commit message to match the pull request summary while retaining
Signed-off-by
messages.