HAL server implementation for IsaacSim with integrated inference
Project description
Krabby HAL Server - IsaacSim
HAL server implementation for IsaacSim with integrated parkour policy inference.
Overview
This package provides an entry point that runs both the IsaacSim HAL server and parkour inference client in the same process using inproc ZMQ for zero-copy communication.
Architecture
┌─────────────────────────────────────────┐
│ IsaacSim Process │
│ │
│ ┌──────────────┐ inproc (ZMQ) │
│ │ HAL Server │◄──────────────────┐ │
│ │ (main thread)│ │ │
│ └──────────────┘ │ │
│ │ │ │
│ │ publishes observations │ │
│ │ receives commands │ │
│ │ │ │
│ ┌──────────────────────────────────┴─┐│
│ │ Parkour Inference Client ││
│ │ (separate thread) ││
│ │ - Polls observations ││
│ │ - Runs policy inference ││
│ │ - Sends joint commands ││
│ └────────────────────────────────────┘│
└─────────────────────────────────────────┘
Installation
From source (development)
cd hal/server/isaac
pip install -e .
With optional dependencies
pip install -e ".[dev]"
Usage
Command line
After installation, use the krabby-hal-server-isaac command:
krabby-hal-server-isaac \
--task Isaac-Anymal-D-v0 \
--checkpoint /path/to/model.pt \
--action_dim 12 \
--obs_dim 753 \
--control_rate 100.0 \
--device cuda
Python module
python -m hal.server.isaac.main \
--task Isaac-Anymal-D-v0 \
--checkpoint /path/to/model.pt \
--action_dim 12 \
--obs_dim 753
Arguments
Required:
--task: IsaacSim task name (e.g.,Isaac-Anymal-D-v0)--checkpoint: Path to model checkpoint file--action_dim: Action dimension (typically 12)--obs_dim: Observation dimension (typically 753)
Optional:
--control_rate: Control loop rate in Hz (default: 100.0)--device: Device for inference,cudaorcpu(default: cuda)--observation_bind: Observation endpoint (default:inproc://hal_observation)--command_bind: Command endpoint (default:inproc://hal_commands)
Plus all AppLauncher arguments for IsaacSim configuration.
Components
HAL Server (hal.server.isaac.IsaacSimHalServer)
- Extracts observations from IsaacSim environment
- Publishes observations via ZMQ PUB socket
- Receives joint commands via ZMQ PULL socket
- Applies commands to simulation
Parkour Inference Client (compute.parkour.inference_client.ParkourInferenceClient)
- Runs in separate thread
- Polls observations from HAL server
- Runs parkour policy inference
- Sends joint commands back to HAL server
Development
Project Structure
hal/server/isaac/
├── pyproject.toml # Package configuration
├── README.md # This file
├── __init__.py # Package init
├── main.py # Entry point with integrated inference
└── hal_server.py # IsaacSimHalServer implementation
compute/parkour/
├── inference_client.py # Parkour inference client
├── policy_interface.py # Policy model interface
├── types.py # Parkour-specific types
└── mappers/ # HW ↔ Model mappers
Running Tests
pytest tests/
Notes
- This package uses inproc ZMQ by default for same-process communication (zero-copy, high performance)
- For distributed deployment (server and client on separate machines), use TCP endpoints instead
- The parkour inference client runs on a separate thread to avoid blocking the simulation loop
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file krabby_hal_server_isaac-0.1.0-py3-none-any.whl.
File metadata
- Download URL: krabby_hal_server_isaac-0.1.0-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a07285e1fd768227ecf23c48b36cc443cf036867c10e51ea76cbc804cdbc8d88
|
|
| MD5 |
0dd1b50ad5091dfebfa920eede13e34f
|
|
| BLAKE2b-256 |
81acfe98c56e07154df89b431af47fec8254c69103a2ce5472b15484ba8c538f
|