Genesis AI Releases Nyx, Quadrants, and Genesis World 1.0 Physics Platform for Scalable Robotics Foundation Model Evaluation
Genesis AI released Genesis World 1.0. The platform consists of four components: the Genesis World physics engine, Nyx (a real-time path-traced renderer), Quadrants (a Python-to-GPU compiler), and a simulation interface. It is designed to accelerate robotics foundation model development through simulation-based evaluation.
Robotics model development has two bottlenecks: data and iteration speed. The field has focused heavily on data. Genesis AI argues the slower, less-discussed bottleneck is the model development cycle itself — specifically, how fast teams can evaluate candidate policies and compare model checkpoints.
What Problem Does This Solve?
A typical policy evaluation at Genesis spans hundreds of tasks with hundreds of episodes each. Running that in the real world requires more than 200 hours of continuous robot operation with one operator and one robot station — for a single evaluation pass. Statistically meaningful comparisons across checkpoints require many such passes.
Genesis World 1.0 runs the same evaluation in under 0.5 hours, with no human or hardware in the loop and bit-exact result consistency across runs. That is roughly two orders of magnitude faster than real-world evaluation.
The research team deliberately chose to prioritize evaluation before using simulation for training data generation. Their reasoning: if training and evaluation share the same simulated distribution, a performance improvement could reflect a tighter fit to simulator dynamics rather than a genuinely better model. Keeping the two pipelines separated produces a cleaner signal.
The research team describes this evaluation approach as zero-shot real-to-sim: policies evaluated in simulation are trained exclusively on real-world data. No simulated data enters pretraining.
Sim-to-Real Correlation Results
Genesis research team reports a Pearson correlation of 0.8996 (95% CI: [0.7439, 0.9314]) between simulation and on-hardware rollouts. The evaluation covered three model variants (Small, Medium, Large) across 14 tasks with 200 episodes per task. The research team ran 1,000,000 bootstrap iterations to estimate confidence intervals.
The Mean Maximum Rank Violation (MMRV) — a metric proposed in SimplerEnv — was 0.0166 (95% CI: [0.0102, 0.0474]). A low MMRV means the simulator preserves the relative performance ranking of different models.
To diagnose where sim-to-real divergence comes from, Genesis team built a real-time side-by-side rig. It runs the simulator and physical robot in parallel from the same initialization. Observations — camera frames and proprioception — can come from the simulator, the robot, or a blend of both. Swapping one source at a time isolates whether divergence originates from physics, rendering, communication, or control.
After this work, their reality gap is 45% smaller, measured by FID score on their dataset, than the next-best alternative simulator.
The Four Components of Genesis World 1.0
Nyx — Real-Time Path-Traced Rendering
Nyx is a GPU-accelerated path tracer that plugs into Genesis World as a camera sensor. It is available as the gs-nyx-plugin Python package. Prebuilt wheels are available for x86-64 Linux (manylinux 2.34+) and Windows 10/11, and require an NVIDIA GPU with CUDA.
Nyx targets noise-free 1080p frames in 4 ms or less on a high-end consumer GPU, with no baking and no ghosting. To reach that target, it uses a visibility buffer, a bindless GPU-driven architecture, MSAA, hardware ray tracing, hardware matrix cores, and video compression.
Path tracing is the baseline: multi-bounce lighting, soft shadows, and indirect illumination are correct by construction. A physically grounded camera model sits on top. An HDRI pipeline lights scenes with measured radiance. Assets come from internal scanning and photogrammetry. 3D Gaussian splats extend coverage where mesh reconstruction is insufficient.
Nyx is driven by batched physics rather than scene-by-scene execution. This allows thousands of parallel rollouts — each with its own scenario, lighting, and camera trajectory — to pass through a single unified rendering pipeline.
Genesis World Physics — Unified Multi-Physics Engine
The Genesis World physics platform is open source (Apache 2.0) and runs multi-physics in a single pipeline: articulated rigid bodies (MJCF/URDF/USD), FEM for elastic deformables and cloth, MPM for granular and elasto-plastic materials, SPH for fluids, and PBD for fast cloth and position-based liquids.
Three interchangeable couplers are available behind the same scene API: a fast general-purpose coupler; a Drake-style Semi-Analytic Primal coupler with hydroelastic contact; and an Incremental Potential Contact (IPC) coupler for intersection-free contact in deformable scenes. Switching between couplers requires a one-line code change, with no changes to assets, sensors, or the policy interface.
Genesis World 1.0 introduced two new solvers. The External Articulation Constraint (built on top of libuipc) embeds joint-space dynamics directly into IPC’s optimization, so joint-space forces and contact forces resolve simultaneously rather than staggered across separate solvers. The second is barrier-free elastodynamics, which replaces IPC’s logarithmic barrier with a custom augmented Lagrangian. Standard IPC’s barrier makes the Hessian ill-conditioned as contacts tighten. The augmented Lagrangian formulation avoids this, allowing every contact pair returned by continuous collision detection to enter the active set immediately. The research team reports up to 103× faster performance than traditional IPC in contact-heavy scenes, with intersection-free guarantees maintained.
Additional improvements: new sensors (point-cloud tactile, temperature-grid, proximity), Implicit FEM with Newton + CG solver, and expanded asset support (URDF xacro, MuJoCo general actuators, compound/mimic joints, equality/weld constraints).
Quadrants — Python-to-GPU Compiler
Quadrants is a cross-platform compiler for GPU-accelerated physics simulation, developed by Genesis AI and released under Apache 2.0. Kernels are written in plain Python and JIT-compiled to NVIDIA CUDA, AMD ROCm, Apple Metal, Vulkan, and x86/ARM64 CPUs via LLVM. It was forked from Taichi in June 2025. The name references the Chinese philosophical saying that Taichi gives rise to the Four Forms (Quadrants).
Key performance improvements over upstream Taichi: up to 4.6× faster runtime on Genesis manipulation and locomotion benchmarks. Warm-cache startup time for single_franka_envs.py dropped from 7.2 seconds to 0.3 seconds — a more than 10× speedup. Reverse-mode autodiff is now a first-class citizen on all backends, making differentiable simulation portable.
Physics steps are recorded as single kernel graphs, removing per-step launch latency. Independent kernels run in parallel via streams. Dense linear algebra (Cholesky factorization, triangular solves) compiles to 16×16 tile-blocked code paths. A perf-dispatch layer benchmarks kernel variants on first call and caches the fastest choice per signature. Tensors share device memory with PyTorch via DLPack with zero-copy interop.
Installation:
pip install quadrants
Simulation Interface
The fourth component is the simulation interface: tooling that connects the physics engine, renderer, and compiler into a usable system for downstream robotics applications. This includes a photogrammetry pipeline for creating digital twins, an automated pipeline for programmatic environment generation (scene layout, asset selection, task specification, and success metrics), and cross-embodiment environments spanning multiple robot configurations.
Evaluation Framework
Genesis structures evaluation as a taxonomy of orthogonal perturbation axes across approximately 10 dimensions, following the framework in “A Taxonomy for Evaluating Generalist Robot Manipulation Policies“:
Visual: lighting conditions, camera perturbation, background variation
Behavioral: unseen object combinations, placement variations, robot configuration
Semantic: language rephrasing, subtask ordering, camera viewpoint
For each axis, one parameter varies while all others remain at nominal values. The research team defines robustness on a given axis as the relative performance retained under perturbation compared to the nominal, unperturbed setting. Perturbation sweeps across training checkpoints at multiple model scales require thousands of evaluation episodes per data point. This scale is only feasible because simulation evaluation runs without hardware.
Key Takeaways
Genesis World 1.0 has four components: Nyx (renderer), Genesis World (physics), Quadrants (compiler), and a simulation interface.
Simulation evaluation achieves a Pearson correlation of 0.8996 with on-hardware rollouts across 14 tasks and 200 episodes each.
Policies are trained on real-world data only; no simulated data enters pretraining (zero-shot real-to-sim).
Barrier-free elastodynamics achieves up to 103× speedup over traditional IPC in contact-heavy scenes.
Quadrants achieves up to 4.6× faster runtime versus upstream Taichi, with warm-cache startup dropping from 7.2s to 0.3s.
GitHub Repositories:
Genesis World Physics: github.com/Genesis-Embodied-AI/genesis-world
Nyx Renderer: github.com/Genesis-Embodied-AI/genesis-nyx
Quadrants Compiler: github.com/Genesis-Embodied-AI/quadrants
Also, feel free to follow us on Twitter and don’t forget to join our 150k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.
Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us
The post Genesis AI Releases Nyx, Quadrants, and Genesis World 1.0 Physics Platform for Scalable Robotics Foundation Model Evaluation appeared first on MarkTechPost.



