AIAny
AI Infra2018
Icon for item

ONNX Runtime | Home

Runs ONNX models faster on CPU, GPU, and NPU by routing graph subgraphs to backend execution providers (CUDA, TensorRT, OpenVINO, DirectML, CoreML). One engine serves the same model across cloud, browser, mobile, and edge, for both inference and training.

Introduction

The hard part of shipping a model was never training it — it was getting the same model to run fast on a Windows laptop, an Android phone, an NVIDIA server, and a web page without rewriting it five times. ONNX Runtime's bet is that a single intermediate format plus a pluggable backend system can absorb that fragmentation, which is why it now quietly powers inference inside Windows, Office, and Bing as well as thousands of external products.

What Sets It Apart
  • Execution provider architecture: instead of one monolithic runtime, it partitions a model graph and hands each subgraph to the best available backend (CUDA, TensorRT, OpenVINO, DirectML, CoreML, or plain CPU), falling back gracefully when a kernel isn't supported. You write the model once and let deployment pick the accelerator.
  • Framework-agnostic reach: it consumes models exported from PyTorch, TensorFlow/Keras, scikit-learn, LightGBM, and XGBoost, so classical ML and deep learning share the same serving path.
  • Both directions of the pipeline: beyond inference it accelerates transformer training and supports on-device training for personalization without sending data off the device.
Who It's For

Great fit if you need one deployment target that spans server, browser, mobile, and edge, or if you want hardware-specific speedups without locking your code to a vendor SDK. Look elsewhere if you live entirely inside one framework's native serving stack (e.g. TorchServe) and never leave that hardware — the indirection of exporting to ONNX and tuning execution providers adds friction you won't recoup.

Information

Categories

More Items

GitHub
AI Infra2025

Measures generative AI inference performance with token-level metrics (TTFT, inter-token latency), latency, and throughput under realistic traffic patterns. Provides a multiprocess engine, real-time TUI dashboard, extensible plugins, and integrations for telemetry and result uploads, aimed at inference benchmarking and capacity planning.

GitHub
AI Train2019

Train and experiment with multi-billion to trillion-parameter transformer models on large GPU clusters using GPU-optimized building blocks and reference training scripts; offers advanced parallelism and mixed-precision support for research teams and ML engineers.

GitHub

Indexes full text of visited web pages and local files on a self‑hosted server so you can search your personal knowledge from a web UI, terminal, CLI, or an AI assistant. Runs without mandatory telemetry, offers a browser extension for automatic capture, and supports optional semantic search via a configurable embeddings endpoint.