| | |
| | |
| | |
| | |
| |
|
| | """Launch Isaac Sim Simulator first.""" |
| |
|
| | from isaaclab.app import AppLauncher |
| |
|
| | |
| | simulation_app = AppLauncher(headless=True).app |
| |
|
| | """Rest everything follows.""" |
| |
|
| | import pytest |
| | import torch |
| |
|
| | from isaaclab.managers import TerminationManager, TerminationTermCfg |
| | from isaaclab.sim import SimulationContext |
| |
|
| |
|
| | class DummyEnv: |
| | """Minimal mutable env stub for the termination manager tests.""" |
| |
|
| | def __init__(self, num_envs: int, device: str, sim: SimulationContext): |
| | self.num_envs = num_envs |
| | self.device = device |
| | self.sim = sim |
| | self.counter = 0 |
| |
|
| |
|
| | def fail_every_5_steps(env) -> torch.Tensor: |
| | """Returns True for all envs when counter is a positive multiple of 5.""" |
| | cond = env.counter > 0 and (env.counter % 5 == 0) |
| | return torch.full((env.num_envs,), cond, dtype=torch.bool, device=env.device) |
| |
|
| |
|
| | def fail_every_10_steps(env) -> torch.Tensor: |
| | """Returns True for all envs when counter is a positive multiple of 10.""" |
| | cond = env.counter > 0 and (env.counter % 10 == 0) |
| | return torch.full((env.num_envs,), cond, dtype=torch.bool, device=env.device) |
| |
|
| |
|
| | def fail_every_3_steps(env) -> torch.Tensor: |
| | """Returns True for all envs when counter is a positive multiple of 3.""" |
| | cond = env.counter > 0 and (env.counter % 3 == 0) |
| | return torch.full((env.num_envs,), cond, dtype=torch.bool, device=env.device) |
| |
|
| |
|
| | @pytest.fixture |
| | def env(): |
| | sim = SimulationContext() |
| | return DummyEnv(num_envs=20, device="cpu", sim=sim) |
| |
|
| |
|
| | def test_initial_state_and_shapes(env): |
| | cfg = { |
| | "term_5": TerminationTermCfg(func=fail_every_5_steps), |
| | "term_10": TerminationTermCfg(func=fail_every_10_steps), |
| | } |
| | tm = TerminationManager(cfg, env) |
| |
|
| | |
| | assert tm.active_terms == ["term_5", "term_10"] |
| |
|
| | |
| | assert tm._term_dones.shape == (env.num_envs, 2) |
| | assert tm._last_episode_dones.shape == (env.num_envs, 2) |
| | assert tm.dones.shape == (env.num_envs,) |
| | assert tm.time_outs.shape == (env.num_envs,) |
| | assert tm.terminated.shape == (env.num_envs,) |
| | assert torch.all(~tm._term_dones) and torch.all(~tm._last_episode_dones) |
| |
|
| |
|
| | def test_term_transitions_and_persistence(env): |
| | """Concise transitions: single fire, persist, switch, both, persist. |
| | |
| | Uses 3-step and 5-step terms and verifies current-step values and last-episode persistence. |
| | """ |
| | cfg = { |
| | "term_3": TerminationTermCfg(func=fail_every_3_steps, time_out=False), |
| | "term_5": TerminationTermCfg(func=fail_every_5_steps, time_out=False), |
| | } |
| | tm = TerminationManager(cfg, env) |
| |
|
| | |
| | env.counter = 3 |
| | out = tm.compute() |
| | assert torch.all(tm.get_term("term_3")) and torch.all(~tm.get_term("term_5")) |
| | assert torch.all(out) |
| | assert torch.all(tm._last_episode_dones[:, 0]) and torch.all(~tm._last_episode_dones[:, 1]) |
| |
|
| | |
| | env.counter = 4 |
| | out = tm.compute() |
| | assert torch.all(~out) |
| | assert torch.all(~tm.get_term("term_3")) and torch.all(~tm.get_term("term_5")) |
| | assert torch.all(tm._last_episode_dones[:, 0]) and torch.all(~tm._last_episode_dones[:, 1]) |
| |
|
| | |
| | env.counter = 5 |
| | out = tm.compute() |
| | assert torch.all(~tm.get_term("term_3")) and torch.all(tm.get_term("term_5")) |
| | assert torch.all(out) |
| | assert torch.all(~tm._last_episode_dones[:, 0]) and torch.all(tm._last_episode_dones[:, 1]) |
| |
|
| | |
| | env.counter = 15 |
| | out = tm.compute() |
| | assert torch.all(tm.get_term("term_3")) and torch.all(tm.get_term("term_5")) |
| | assert torch.all(out) |
| | assert torch.all(tm._last_episode_dones[:, 0]) and torch.all(tm._last_episode_dones[:, 1]) |
| |
|
| | |
| | env.counter = 16 |
| | out = tm.compute() |
| | assert torch.all(~out) |
| | assert torch.all(~tm.get_term("term_3")) and torch.all(~tm.get_term("term_5")) |
| | assert torch.all(tm._last_episode_dones[:, 0]) and torch.all(tm._last_episode_dones[:, 1]) |
| |
|
| |
|
| | def test_time_out_vs_terminated_split(env): |
| | cfg = { |
| | "term_5": TerminationTermCfg(func=fail_every_5_steps, time_out=False), |
| | "term_10": TerminationTermCfg(func=fail_every_10_steps, time_out=True), |
| | } |
| | tm = TerminationManager(cfg, env) |
| |
|
| | |
| | env.counter = 5 |
| | out = tm.compute() |
| | assert torch.all(out) |
| | assert torch.all(tm.terminated) and torch.all(~tm.time_outs) |
| |
|
| | |
| | env.counter = 10 |
| | out = tm.compute() |
| | assert torch.all(out) |
| | assert torch.all(tm.terminated) and torch.all(tm.time_outs) |
| |
|