Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b472a29
load models manually for now, TODO: fetch from server
Apr 30, 2025
16a88aa
some print cleanups
May 11, 2025
ebeeb27
run gat for missing agents
May 11, 2025
6f845f3
Merge remote-tracking branch 'origin/no-arl-vggt' into phoenix_integr…
Jun 12, 2025
a8dbf4e
keeping up with vggt updates, restore gat implementation
Jun 12, 2025
721199a
Merge remote-tracking branch 'origin/no-arl-vggt-split' into phoenix_…
Jun 13, 2025
50e524e
Merge remote-tracking branch 'origin-ssh/no-arl-vggt-split' into phoe…
Jun 16, 2025
07f9f61
cleanup extra source files, modify CMakeLists to reflect changes
Jul 4, 2025
c9a96ae
update onnx permissions
Jul 4, 2025
cf6e56e
cleanup onnx files
Jul 4, 2025
3a94407
Merge remote-tracking branch 'origin-ssh/no-arl-vggt-split' into long…
Jul 4, 2025
ac9c1b1
onnx engine plugin initial implementation
lquan9 Jul 7, 2025
4782f20
engine interface base implementation
Jul 7, 2025
f71d13e
cleanup tensorrt engine and onnx engine
Jul 8, 2025
ae18835
update tensorrt engine with engine interface, removed unused batch_si…
Jul 8, 2025
96c17e3
engine plugin fixes, renamed base engine class due to confusion, update
lquan9 Jul 8, 2025
d5312af
onnx_engine fixes, set default engine for gat to use onnx, update
lquan9 Jul 9, 2025
83d1acf
update gat launch to use argument for engine selection, re-organized …
lquan9 Jul 10, 2025
de76c31
remove mission maestro dependencies for gat testing, TODO: update mis…
lquan9 Jul 10, 2025
bd792c5
adding subscription to other robots' odom and calculating closest nei…
mgoarin7363 Jul 10, 2025
9f96935
calculate input features
mgoarin7363 Jul 10, 2025
9070ef5
first debugging phase
mgoarin7363 Jul 10, 2025
f41c6db
second phase of debugging - it builds
mgoarin7363 Jul 10, 2025
0ada437
wokring on launch file + other fixes
mgoarin7363 Jul 11, 2025
797d169
node subscribers working
mgoarin7363 Jul 11, 2025
17ec0a5
input feature and node correct - tested
mgoarin7363 Jul 11, 2025
80a51ac
latest patched commit from mano
lquan9 May 7, 2026
536fca9
cleanup and use service adapter in gat planner
lquan9 Jul 12, 2025
08932b2
feat: remove arl dependencies by using a generic navigation adapter
lquan9 May 8, 2026
076380c
feat: mission maestro bridge example for navigation
lquan9 May 8, 2026
712cc77
fix: launch files missing
lquan9 May 8, 2026
aa34dfa
Merge remote-tracking branch 'origin/main' into long/onnx-tensorrt-re…
lquan9 May 8, 2026
48503de
update changelog
lquan9 May 8, 2026
04e19f2
docs: updated guides and provide full documentation
lquan9 May 8, 2026
48fb145
chore: remove redundant docs
lquan9 May 8, 2026
f39bac0
fix: mermaid
lquan9 May 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: docs

on:
push:
branches: ["main"]
pull_request:

permissions:
contents: write

jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Install dependencies
run: pip install -r docs/requirements.txt

- name: Ensure local mermaid JS exists
run: |
test -f docs/_static/mermaid.min.js || curl -sL https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js -o docs/_static/mermaid.min.js

- name: Build docs
run: sphinx-build -W -b html docs docs/_build/html

- name: Upload docs artifact
uses: actions/upload-artifact@v4
with:
name: docs-html
path: docs/_build/html
101 changes: 101 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
# C++
**/cmake-build*/
**/build*/
**/*.so
**/*.log*

# Omniverse
**/*.dmp
**/.thumbs

# No USD files allowed in the repo
**/*.usd
**/*.usda
**/*.usdc
**/*.usdz

# Python
.DS_Store
**/*.egg-info/
**/__pycache__/
**/.pytest_cache/
**/*.pyc
**/*.pb

# Docker/Singularity
**/*.sif
docker/cluster/exports/
docker/.container.cfg

# IDE
**/.idea/
**/.vscode
# Don't ignore the top-level .vscode directory as it is
# used to configure VS Code settings
#!.vscode

# Outputs
**/output/*
**/outputs/*
**/videos/*
**/wandb/*
**/.neptune/*
docker/artifacts/
*.tmp
**/*.pt
**/*.pth

# Doc Outputs
**/docs/_build/*
**/generated/*
**/docs/technical_reference

# Isaac-Sim packman
_isaac_sim*
_repo
_build
.lastformat

# RL-Games
**/runs/*
**/logs/*
**/recordings/*

# Pre-Trained Checkpoints
/.pretrained_checkpoints/

# Teleop Recorded Dataset
/datasets/
pipeline_out/

# Docker history
.isaac-lab-docker-history

tex file extensions
**/*.aux*
**/*.fls*
**/*.fdb*
**/*.out
**/*.toc
**/*.lot
**/*.lof

# backups
**/*.bak

#data
data/*

#env
**/.env
**/.venv
\.*_env
\.venv
**/venv

.jepa_config.json

# Vi files
**/*.swp
**/*.swo
docs/_static/mermaid.min.js
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Initial pre-release targeting the Humble ROS distribution.

---

## [pre-v0.1.0-m] — current
## [pre-v0.1.0-m]
**Branch:** `vggt-no-arl-split` -> `main`

MVP for decoder / encoder split.
Expand All @@ -33,3 +33,14 @@ First tagged release targeting the GQ robot platforms.

### Added
- Initial release for GQ platforms

---

## [v1.0.0-main] — current

First release support ROS2 Humble after RAL acceptance.

### Added
- Refactored inference engine to support both tensorRT and ONNX runtimes using pluggable backends.
- Removed dependency on specific autonomous robot platforms and stacks using a generic adapter interface.
- Provide full documentation for installation, configuration, and usage of the Neuromesh library.
149 changes: 0 additions & 149 deletions VGGT_README.md

This file was deleted.

Loading
Loading