AIAny
AI Infra2022
Icon for item

NVIDIA Warp

Compiles plain Python functions into GPU or CPU kernels at runtime via a JIT decorator, with differentiable output that plugs into PyTorch, JAX, and Paddle. Ships physics, robotics, geometry, and FEM primitives — particles, meshes, ray-casting, FFT.

Introduction

Writing GPU kernels usually means leaving Python for CUDA C++ and losing the gradient on the way out. Warp keeps you in Python: decorate a function with @wp.kernel and it JIT-compiles to native CPU or GPU code that stays differentiable end-to-end, so the same simulation you run forward can also backpropagate.

What Sets It Apart
  • Differentiability is first-class, not bolted on. Kernel gradients flow into PyTorch, JAX, and Paddle, so a physics step becomes just another differentiable layer in a training loop — directly useful for sim-to-real and gradient-based control.
  • Simulation primitives ship in the box. Particles, meshes, ray-casting, FFT, and finite-element methods are built in, so you don't assemble a scientific-computing stack before writing the actual model.
  • One source, two targets. The same kernel runs on CPU or GPU without a rewrite, and USD output drops results straight into standard visualization pipelines.
Who It's For

Great fit if you work on robotics, physics-based ML, or differentiable simulation and want gradients through GPU code without dropping to CUDA. Look elsewhere if you expect a high-level physics engine with ready-made rigid-body scenes — Warp is a kernel-authoring layer, so you build the simulation logic yourself, and reaching peak throughput still rewards understanding how the GPU executes your code.

Information

  • Websitegithub.com
  • AuthorsNVIDIA
  • Published date2022/03/18

More Items

A vision-language-action foundation model trained on 100k+ hours of real-world robot manipulation trajectories to follow natural-language instructions and adapt to downstream tasks with minimal fine-tuning. Uses a two-stage (pre-/post-) training recipe and a scalable auto-labeling pipeline; shows clear scaling benefits and state-of-the-art sim-to-real transfer on standard benchmarks.

Enables RL post-training with million-token prompts under a fixed GPU budget by evaluating shared prompt state without autograd, retaining only minimal model state, and replaying short response branches; instantiated as GRPO and demonstrated on Qwen3.6-27B and GLM-5.2 up to multi-million token execution.

GitHub
AI Infra2026

Defines OpenTelemetry semantic conventions for generative AI telemetry — spans, metrics, and events for GenAI clients, the Model Context Protocol (MCP), and provider-specific integrations. Includes YAML models, human-readable docs, and reference implementations to standardize observability across GenAI deployments.