Measures loading and saving time for an ONNX model#

This script builds a small ONNX model and benchmarks the time to load and save it using onnx, onnx_light.onnx, and onnxruntime. When the standalone C++ example executables load_onnx_time, load_onnx_light_time, and save_onnx_light_time are available, it also includes their timing output. The model structure is identical in all cases.

Use --model <path> on the command line to benchmark an existing ONNX file instead of the default synthetic model. The script also prints a short statistics block (node count, initializer count, total tensor size, etc.) for whichever model is used.

The onnx_light.onnx implementation does not depend on protobuf and therefore avoids the overhead of the protobuf serialization layer. It also supports parallel loading of tensor weights through the num_threads keyword and loading models stored with external data.

When loading a single-file model, onnx_light.onnx memory-maps the .onnx file (mmap on POSIX, CreateFileMapping on Windows) and parses directly out of the mapped region — there is no double-buffered ifstream + read-ahead step on top of it. The same memory-mapping strategy is used for the external weights file when a model is stored with external data: each weights file is mapped once into a shared buffer that all tensors point into.

This brings load/1filex1/onnxlight-cpp close to (or ahead of) load/1filex1/onnx-cpp on parser-bound models with many small initializers. When no_copy=True is requested with a single-file model the loader still copies inline raw_data (so that the parsed ModelProto does not depend on the lifetime of the mmap region): zero-copy of inline raw data is supported only for bytes inputs and for external weights files.

One key advantage over the onnx package is zero-copy parsing: when no_copy=True is passed to onnx_light.onnx.load() (or via ParseOptions), tensor raw_data blobs are not copied into new buffers. Instead each TensorProto stores a direct pointer into the serialized bytes. This eliminates one malloc + memcpy per tensor initializer and is therefore especially beneficial for models with many large weight tensors.

For models stored with external data, no_copy=True enables a related fast path: each external weights file is read once into a shared buffer, and every tensor points into that shared storage instead of owning a separate copy.

Warning

When no_copy=True is used with an in-memory bytes object, the caller must keep that original buffer alive for as long as the parsed model is in use. External-data files do not have that lifetime constraint because onnx_light keeps the shared file buffers alive.

For onnxruntime, the session is created with all graph optimizations disabled (ORT_DISABLE_ALL) so that the measurement reflects only the model loading overhead rather than compilation or fusion costs.

  • onnx, onnxlight, ort: use onnx, onnx-light, or onnxruntime

  • reference: builds an onnx_light.onnx.reference.ReferenceEvaluator from the model

  • 1filex1: saves in a single file with 1 thread

  • 1filex4: saves in a single file with 4 threads

  • 2filex1: saves in a file and another for external data with 1 thread

  • 2filex4: saves in a file and another for external data with 4 threads

Selectable benchmark scenarios (via --scenario): load, save, serialize, parse, cpp, all. The cpp scenario runs the standalone C++ timing executables (load_onnx_time, load_onnx_light_time, save_onnx_light_time) when they are available. The executable discovery automatically skips them when the CI environment variable is set, so no results are produced in CI environments where the executables have not been built.

Use --model <path> to supply an existing single-file ONNX model. When provided the synthetic model is not created, and the supplied file is used directly as the benchmark target. The external-data variant (used for 2file benchmarks) is still derived from the loaded model and written to the temporary directory.

Alternatively, use --model-id <huggingface_repo_id> to download an ONNX model from the Hugging Face Hub and benchmark it. For example, --model-id onnx-community/Qwen3-0.6B-ONNX downloads onnx-community/Qwen3-0.6B-ONNX. The specific file to download inside the repository can be selected with --model-file (default onnx/model.onnx). When the download fails (for example due to a connectivity issue) the script prints a warning and falls back to the default synthetic model so the example can still run in offline environments.

The --external flag makes the default synthetic model store its weights in a companion external data file, which is useful to exercise the external-weights loading path.

import argparse
import importlib
import math
import os
import pathlib
import re
import shutil
import tempfile
import time
import urllib.error
import urllib.request

import numpy as np
import pandas

import onnx_light.onnx.helper as oh
import onnx_light.onnx.numpy_helper as onh

try:
    import onnxruntime as ort
except ImportError:
    ort = None

if ort is not None:
    _ort_sess_opts = ort.SessionOptions()
    _ort_sess_opts.graph_optimization_level = ort.GraphOptimizationLevel.ORT_DISABLE_ALL
else:
    _ort_sess_opts = None
    print("WARNING: onnxruntime is not installed, skipping onnxruntime benchmarks.")

import onnx_light.onnx as onnxl
import onnx_light.onnx.helper as onnxlh
from onnx_light.onnx.reference import ReferenceEvaluator
from onnx_light.doc import (
    find_standalone_executable,
    get_cpu_topology,
    get_processor_name,
    get_total_memory_gb,
    measure_cpp_with_example,
)

Setup#

Define benchmark parameters and command-line argument parsers. Use –model <path> to benchmark an existing ONNX file instead of the default synthetic model built from make_model().

N_INIT = 40
DIM = 256 if os.environ.get("UNITTEST_GOING") == "1" else 2048
BENCHMARK_SCENARIOS = ("load", "save", "serialize", "parse", "cpp")


def _parse_args(args=None) -> argparse.Namespace:
    """Parses all command-line arguments for plot_onnx_time.py.

    Builds a single :class:`argparse.ArgumentParser` covering the
    benchmark scenarios (``--scenario``), the local model path
    (``--model``) and the Hugging Face download options (``--model-id``,
    ``--model-file``).

    Returns:
        The parsed :class:`argparse.Namespace`. ``scenarios`` is a set of
        the selected benchmark scenarios (all of them when ``all`` is
        requested or nothing is specified).
    """
    parser = argparse.ArgumentParser(
        description="Runs one or several benchmark scenarios for plot_onnx_time.py."
    )
    parser.add_argument(
        "--scenario",
        dest="scenarios",
        action="append",
        choices=(*BENCHMARK_SCENARIOS, "all"),
        help=(
            "Scenario to execute. May be specified multiple times. "
            "Supported values: load, save, serialize, parse, cpp, all."
        ),
    )
    parser.add_argument(
        "--model",
        dest="model_path",
        default=None,
        help=(
            "Path to an existing single-file ONNX model to benchmark "
            "instead of the default synthetic model."
        ),
    )
    parser.add_argument(
        "--model-id",
        dest="model_id",
        default=None,
        help=(
            "Hugging Face repository id (e.g. onnx-community/Qwen3-0.6B-ONNX) "
            "from which to download an ONNX model to benchmark."
        ),
    )
    parser.add_argument(
        "--model-file",
        dest="model_file",
        default="onnx/model.onnx",
        help=(
            "Path within the Hugging Face repository of the ONNX file to "
            "download when --model-id is provided. Defaults to onnx/model.onnx."
        ),
    )
    parser.add_argument(
        "--external",
        dest="external",
        action="store_true",
        help=(
            "When building the default synthetic model, store its weights in an "
            "external data file (produces a model with external weights)."
        ),
    )
    parsed, _ = parser.parse_known_args(args=args)
    values = parsed.scenarios or ["all"]
    if "all" in values:
        parsed.scenarios = set(BENCHMARK_SCENARIOS)
    else:
        parsed.scenarios = set(values)
    return parsed


def _download_hf_model(model_id: str, model_file: str, dest_dir: str) -> str | None:
    """Downloads an ONNX model file from the Hugging Face Hub.

    The file is fetched from
    ``https://huggingface.co/{model_id}/resolve/main/{model_file}`` and
    written under *dest_dir*.  Any download failure (network error,
    HTTP error, OS error, ...) is caught and reported with a warning;
    the function then returns ``None`` so that callers can fall back to
    a default model.

    Args:
        model_id: Hugging Face repository identifier.
        model_file: Path of the ONNX file inside the repository.
        dest_dir: Directory in which to write the downloaded file.

    Returns:
        Absolute path to the downloaded file, or ``None`` when the
        download failed.
    """
    url = f"https://huggingface.co/{model_id}/resolve/main/{model_file}"
    local_path = os.path.abspath(os.path.join(dest_dir, os.path.basename(model_file)))
    os.makedirs(os.path.dirname(local_path) or ".", exist_ok=True)
    print(f"Downloading {url} -> {local_path}")
    try:
        urllib.request.urlretrieve(url, local_path)  # noqa: S310
    except (urllib.error.URLError, urllib.error.HTTPError, OSError, ValueError) as exc:
        print(
            f"WARNING: failed to download {url}: {exc}. "
            "Falling back to the default synthetic model."
        )
        if os.path.exists(local_path):
            try:
                os.remove(local_path)
            except OSError:
                pass
        return None
    return local_path


_CLI_ARGS = _parse_args()
SELECTED_SCENARIOS = _CLI_ARGS.scenarios
_CLI_MODEL_PATH = _CLI_ARGS.model_path
_CLI_MODEL_ID = _CLI_ARGS.model_id
_CLI_MODEL_FILE = _CLI_ARGS.model_file
_CLI_EXTERNAL = _CLI_ARGS.external


def _run_scenario(name: str) -> bool:
    """Checks whether the given scenario name is selected for execution."""
    return name in SELECTED_SCENARIOS


def make_model(n_init: int = N_INIT, dim: int = DIM) -> onnxl.ModelProto:
    """Returns a synthetic ONNX model with *n_init* Gemm initializers of size *dim*."""
    initializers = []
    nodes = []
    inputs = [oh.make_tensor_value_info("X", onnxl.TensorProto.FLOAT, [None, dim])]

    prev = "X"
    for i in range(n_init):
        weight_name = f"W{i}"
        out_name = f"Y{i}"
        w = np.random.randn(dim, dim).astype(np.float32)
        initializers.append(onh.from_array(w, name=weight_name))
        nodes.append(oh.make_node("Gemm", [prev, weight_name], [out_name], transB=1))
        prev = out_name

    outputs = [oh.make_tensor_value_info(prev, onnxl.TensorProto.FLOAT, [None, dim])]
    graph = oh.make_graph(nodes, "bench_graph", inputs, outputs, initializer=initializers)
    model = oh.make_model(graph, opset_imports=[oh.make_opsetid("", 18)], ir_version=9)
    return model


def _tensor_data_bytes(tensor: onnxl.TensorProto) -> int:
    """Returns the in-memory byte count of a TensorProto's stored data.

    Uses :func:`onnx_light.onnx.helper.tensor_dtype_to_np_dtype` to map
    the element type to a numpy dtype and derives the byte count from the
    tensor dimensions, avoiding a full array materialisation.

    Returns:
        Byte count of the tensor's data, or ``0`` when it cannot be determined.
    """
    if tensor.raw_data:
        return len(tensor.raw_data)
    if tensor.data_type not in onnxlh.TENSOR_TYPE_MAP:
        return 0
    np_dtype = onnxlh.tensor_dtype_to_np_dtype(tensor.data_type)
    n_elements = math.prod(tensor.dims) if tensor.dims else 1
    return int(np_dtype.itemsize * n_elements)


def print_model_stats(model: onnxl.ModelProto, file_path: str | None = None) -> None:
    """Prints summary statistics for *model* to stdout.

    Args:
        model: The ONNX model to inspect.
        file_path: Optional path to the model file on disk; when given the
            file size is included in the output.
    """
    graph = model.graph
    n_nodes = len(graph.node)
    n_initializers = len(graph.initializer)
    n_inputs = len(graph.input)
    n_outputs = len(graph.output)
    total_tensor_bytes = sum(_tensor_data_bytes(t) for t in graph.initializer)
    opsets = ", ".join(f"{op.domain or 'ai.onnx'}={op.version}" for op in model.opset_import)
    print("Model statistics")
    print("----------------")
    print(f"  IR version              : {model.ir_version}")
    print(f"  Opset(s)                : {opsets}")
    print(f"  Number of nodes         : {n_nodes}")
    print(f"  Number of inputs        : {n_inputs}")
    print(f"  Number of outputs       : {n_outputs}")
    print(f"  Number of initializers  : {n_initializers}")
    print(f"  Total initializer size  : {total_tensor_bytes / 2 ** 20:.3f} MB")
    if file_path and os.path.exists(file_path):
        print(f"  File size               : {os.path.getsize(file_path) / 2 ** 20:.3f} MB")
    print(f"  Serialized model size   : {model.ByteSize() / 2 ** 20:.3f} MB")

Model setup#

Either load an existing model supplied via --model or build the default synthetic one and write it to a temporary directory.

tmp_dir = "temp_plot_onnx_time"
if not os.path.exists(tmp_dir):
    os.mkdir(tmp_dir)


def onnx_load(onnx_path):
    import onnx

    return onnx.load(onnx_path)


def _model_has_external_data(model: onnxl.ModelProto) -> bool:
    """Returns True when any initializer of *model* stores its data externally."""
    return any(
        init.data_location == onnxl.TensorProto.EXTERNAL for init in model.graph.initializer
    )


def _save_default_model(model: onnxl.ModelProto, tmp_dir: str, external: bool) -> str:
    """Saves the synthetic *model* to *tmp_dir* and returns its file path.

    When *external* is True the weights are written to a companion external
    data file so the produced model has external weights.

    Returns:
        The path of the saved ONNX model file.
    """
    onnx_path = os.path.join(tmp_dir, "bench.onnx")
    if external:
        onnxl.save(
            model,
            onnx_path,
            save_as_external_data=True,
            location="bench.onnx.data",
            size_threshold=0,
        )
    else:
        onnxl.save(model, onnx_path)
    return onnx_path


def onnx_save(model, onnx_path):
    import onnx

    assert isinstance(model, onnx.ModelProto), f"Unexpected type {type(model)}"
    onnx.save(model, onnx_path)


def _maybe_import_onnx_ir():
    """Returns the optional ``onnx_ir`` module when available, otherwise ``None``."""
    try:
        return importlib.import_module("onnx_ir")
    except ImportError:
        return None


if _CLI_MODEL_PATH is not None:
    onnx_path = os.path.abspath(_CLI_MODEL_PATH)
    model = onnx_load(onnx_path)
    print(f"Using provided model: {onnx_path}")
elif _CLI_MODEL_ID is not None:
    downloaded = _download_hf_model(_CLI_MODEL_ID, _CLI_MODEL_FILE, tmp_dir)
    if downloaded is not None:
        onnx_path = downloaded
        model = onnx_load(onnx_path)
        print(f"Using model from Hugging Face id {_CLI_MODEL_ID!r}: {onnx_path}")
    else:
        model = make_model()
        onnx_path = _save_default_model(model, tmp_dir, _CLI_EXTERNAL)
else:
    model = make_model()
    onnx_path = _save_default_model(model, tmp_dir, _CLI_EXTERNAL)

onx = onnx_load(onnx_path)
_has_external_data = _model_has_external_data(onx)
onxl = onnxl.load(onnx_path, load_external_data=_has_external_data)
onxl_x4 = onnxl.load(onnx_path, num_threads=4, load_external_data=_has_external_data)

# ``onnx.ModelProto.ByteSize`` does not account for external weights, so the
# in-memory model size is measured on the ``onnx_light`` model ``onxl``. When
# the model stores its weights externally, ``onxl`` is loaded with
# ``load_external_data=True`` (see above), which pulls the external tensors into
# memory so ``ByteSize`` reflects the real size; single-file models already have
# their weights inline.
size_bytes = onxl.ByteSize()
print(f"Model size: {size_bytes / 2 ** 20:.3f} MB")

file_size = os.path.getsize(onnx_path)
print(f"File size : {file_size / 2 ** 20:.3f} MB")

onnx_ir_module = _maybe_import_onnx_ir()
onx_ir = (
    onnx_ir_module.load(onnx_path)
    if onnx_ir_module is not None and (_run_scenario("load") or _run_scenario("save"))
    else None
)

ext_load_onnx = os.path.abspath(os.path.join(tmp_dir, "ext_load.onnx"))
ext_load_data = os.path.abspath(os.path.join(tmp_dir, "ext_load.onnx.data"))
onnxl.save(onxl, ext_load_onnx, location=ext_load_data)
Model size: 640.002 MB
File size : 640.002 MB

Model statistics#

Print a summary of the model: number of nodes, initializers (tensors), total weight size, file size, and serialized size.

print_model_stats(onxl, onnx_path)
Model statistics
----------------
  IR version              : 9
  Opset(s)                : ai.onnx=18
  Number of nodes         : 40
  Number of inputs        : 1
  Number of outputs       : 1
  Number of initializers  : 40
  Total initializer size  : 640.000 MB
  File size               : 640.002 MB
  Serialized model size   : 640.002 MB

Benchmark helper.

MIN_TIME_THRESHOLD = 1e-9
CPP_LOAD_METRIC_PATTERN = re.compile(
    r"^\s*(Average|Median|Min|Max|Std|Standard deviation) load \(ms\)\s*:\s*([0-9.eE+-]+)\s*$"
)
CPP_SAVE_METRIC_PATTERN = re.compile(
    r"^\s*(Average|Median|Min|Max|Std|Standard deviation) save \(ms\)\s*:\s*([0-9.eE+-]+)\s*$"
)
WINDOWS_BUILD_CONFIGS = ("Release", "RelWithDebInfo", "Debug", "MinSizeRel")


def measure(name: str, fn, n: int = 5, warmup: int = 1) -> dict:
    """
    Executes *fn* with warm-up iterations and records timing statistics.

    Args:
        name: Benchmark name.
        fn: Callable to execute.
        n: Number of measured iterations.
        warmup: Number of non-measured warm-up iterations.

    Returns:
        A dictionary containing name, median, avg, min, max, and std.
    """
    for _ in range(max(0, warmup)):
        fn()
    times = []
    for _ in range(n):
        t0 = time.perf_counter()
        fn()
        times.append(time.perf_counter() - t0)
    arr = np.array(times)
    return {
        "name": name,
        "median": float(np.median(arr)),
        "avg": float(np.mean(arr)),
        "min": float(np.min(arr)),
        "max": float(np.max(arr)),
        "std": float(np.std(arr)),
    }


def _flush_file(path: str) -> None:
    """Flushes one file descriptor so benchmark timing includes write-back."""
    with open(path, "r+b") as stream:
        stream.flush()
        os.fsync(stream.fileno())


def print_stats(name: str, stats: dict) -> None:
    """Prints timing statistics (average, median, max, and standard deviation) in milliseconds."""
    print(
        f"{name:<35} avg={stats['avg'] * 1e3:.1f} ms"
        f" median={stats['median'] * 1e3:.1f} ms"
        f" max={stats['max'] * 1e3:.1f} ms"
        f" std={stats['std'] * 1e3:.1f} ms"
    )


def _find_load_onnx_time_executable(reasons: list[str] | None = None) -> str | None:
    """Locates the standalone C++ timing executable.

    Args:
        reasons: Optional list that receives a human-readable description of why
            the executable could not be located when ``None`` is returned.

    Returns:
        The path to ``load_onnx_time`` if available, otherwise ``None``.
    """
    return find_standalone_executable(
        "load_onnx_time",
        [
            pathlib.Path("build/load-onnx-time-example/load_onnx_time"),
            pathlib.Path("build/examples/load_onnx_time/load_onnx_time"),
            pathlib.Path("build-load-onnx-time/load_onnx_time"),
        ],
        script_file=globals().get("__file__"),
        windows_build_configs=WINDOWS_BUILD_CONFIGS,
        reason_out=reasons,
    )


def _find_load_onnx_light_time_executable(reasons: list[str] | None = None) -> str | None:
    """Locates the standalone ``load_onnx_light_time`` executable.

    Args:
        reasons: Optional list that receives a human-readable description of why
            the executable could not be located when ``None`` is returned.

    Returns:
        The path to ``load_onnx_light_time`` if available, otherwise ``None``.
    """
    return find_standalone_executable(
        "load_onnx_light_time",
        [
            pathlib.Path("build/load-onnx-light-time-example/load_onnx_light_time"),
            pathlib.Path("build/examples/load_onnx_light_time/load_onnx_light_time"),
            pathlib.Path("build-load-onnx-light-time/load_onnx_light_time"),
        ],
        script_file=globals().get("__file__"),
        windows_build_configs=WINDOWS_BUILD_CONFIGS,
        reason_out=reasons,
    )


def _measure_cpp_load_with_example(
    onnx_file: str,
    n: int = 20,
    num_threads: int = 1,
    executable_name: str = "load_onnx_light_time",
    file_count: int = 1,
    no_copy: bool = False,
    touch_raw_data_pages: bool = False,
    reasons: list[str] | None = None,
) -> dict | None:
    """Measures C++ loading performance through a standalone executable.

    Args:
        onnx_file: Model path to pass to the standalone executable.
        n: Number of iterations to pass to the standalone executable.
        num_threads: Number of loading threads to pass to the standalone executable.
        executable_name: Executable selector to use:
            ``"load_onnx_time"`` or ``"load_onnx_light_time"``.
        file_count: Number of files involved in the benchmark key.
        no_copy: Whether to request ``no_copy`` mode from ``load_onnx_light_time``.
        touch_raw_data_pages: Whether to request page touching during no-copy loading
            from ``load_onnx_light_time``.
        reasons: Optional list that receives a human-readable description of why the
            standalone executable could not be located when ``None`` is returned.

    Returns:
        A benchmark dictionary matching :func:`measure` output keys if successful,
        otherwise ``None``.
    """
    if file_count <= 0:
        raise ValueError(f"file_count must be positive, got {file_count!r}")
    if executable_name == "load_onnx_time":
        if no_copy:
            raise ValueError("no_copy is only supported with 'load_onnx_light_time'")
        executable = _find_load_onnx_time_executable(reasons=reasons)
        result_name = f"load/{file_count}filex{num_threads}/onnx-cpp"
    elif executable_name == "load_onnx_light_time":
        executable = _find_load_onnx_light_time_executable(reasons=reasons)
        lib_name = "onnxlight-cpp-nocopy" if no_copy else "onnxlight-cpp"
        result_name = f"load/{file_count}filex{num_threads}/{lib_name}"
    else:
        raise ValueError(
            "executable_name must be 'load_onnx_time' or "
            f"'load_onnx_light_time', got {executable_name!r}"
        )
    args = [onnx_file, str(n), str(num_threads)]
    if no_copy:
        args.append("nocopy_touch" if touch_raw_data_pages else "nocopy")
    return measure_cpp_with_example(
        executable=executable,
        args=args,
        metric_pattern=CPP_LOAD_METRIC_PATTERN,
        result_name=result_name,
        executable_name=executable_name,
    )


def _find_save_onnx_light_time_executable(reasons: list[str] | None = None) -> str | None:
    """Locates the standalone C++ save-timing executable.

    Args:
        reasons: Optional list that receives a human-readable description of why
            the executable could not be located when ``None`` is returned.

    Returns:
        The path to ``save_onnx_light_time`` if available, otherwise ``None``.
    """
    return find_standalone_executable(
        "save_onnx_light_time",
        [
            pathlib.Path("build/save-onnx-light-time-example/save_onnx_light_time"),
            pathlib.Path("build/examples/save_onnx_light_time/save_onnx_light_time"),
            pathlib.Path("build-save-onnx-light-time/save_onnx_light_time"),
        ],
        script_file=globals().get("__file__"),
        windows_build_configs=WINDOWS_BUILD_CONFIGS,
        reason_out=reasons,
    )


def _measure_cpp_save_with_example(
    onnx_file: str, n: int = 20, num_threads: int = 1, reasons: list[str] | None = None
) -> dict | None:
    """Measures C++ one-file save performance through ``save_onnx_light_time``.

    Args:
        onnx_file: Model path to pass to the standalone executable.
        n: Number of iterations to pass to the standalone executable.
        num_threads: Number of saving threads to pass to the standalone executable.
        reasons: Optional list that receives a human-readable description of why the
            standalone executable could not be located when ``None`` is returned.

    Returns:
        A benchmark dictionary matching :func:`measure` output keys if successful,
        otherwise ``None``.
    """
    executable = _find_save_onnx_light_time_executable(reasons=reasons)
    if executable is None:
        return None
    with tempfile.TemporaryDirectory() as tmp_save_dir:
        return measure_cpp_with_example(
            executable=executable,
            args=[onnx_file, tmp_save_dir, str(n), str(num_threads), "onefile"],
            metric_pattern=CPP_SAVE_METRIC_PATTERN,
            result_name=f"save/1filex{num_threads}/onnxlight-cpp",
            executable_name="save_onnx_light_time",
        )


# Load scenarios
# --------------

data = []
if _run_scenario("load"):
    # %%
    # Load with onnx.
    data.append(measure("load/1filex1/onnx", lambda: onnx_load(onnx_path)))
    print_stats("load/1filex1/onnx", data[-1])

    # %%
    # Load with ``onnx_light.onnx``.

    data.append(measure("load/1filex1/onnxlight", lambda: onnxl.load(onnx_path, num_threads=1)))
    print_stats("load/1filex1/onnxlight", data[-1])

    # %%
    # Load with ``onnx_light.onnx`` using parallel tensor loading.

    data.append(measure("load/1filex4/onnxlight", lambda: onnxl.load(onnx_path, num_threads=4)))
    print_stats("load/1filex4/onnxlight", data[-1])

    # %%
    # Compare the two file-backed stream implementations explicitly:
    # ``FileLoadMode.MMAP`` memory-maps the ``.onnx`` file (``mmap`` on POSIX,
    # ``CreateFileMapping`` on Windows) and parses directly out of the mapped
    # region, while ``FileLoadMode.IFSTREAM`` forces the buffered
    # ``std::ifstream``-based reader.  The default ``FileLoadMode.AUTO``
    # behaves like ``IFSTREAM`` (memory mapping is not used by default);
    # running both modes side by side highlights the gain (or
    # cost) of memory mapping on the current platform/filesystem.

    data.append(
        measure(
            "load/1filex1/onnxlight-mmap",
            lambda: onnxl.load(onnx_path, file_load_mode="MMAP", num_threads=1),
        )
    )
    print_stats("load/1filex1/onnxlight-mmap", data[-1])

    data.append(
        measure(
            "load/1filex1/onnxlight-ifstream",
            lambda: onnxl.load(onnx_path, file_load_mode="IFSTREAM", num_threads=1),
        )
    )
    print_stats("load/1filex1/onnxlight-ifstream", data[-1])

    # %%
    # Load with ``ir-py`` when the optional ``onnx_ir`` package is installed.

    if onnx_ir_module is not None:
        data.append(measure("load/1filex1/ir-py", lambda: onnx_ir_module.load(onnx_path)))
        print_stats("load/1filex1/ir-py", data[-1])
    else:
        print("onnx_ir is not installed, skipping ir-py single-file load benchmark.")

    # %%
    # Load with ``onnx_light.onnx.reference.ReferenceEvaluator``.  This measures
    # the time to build a Python reference runtime from the model, which
    # includes loading the model and preparing the operators for evaluation.

    data.append(
        measure("load/1filex1/reference", lambda: ReferenceEvaluator(onnxl.load(onnx_path)))
    )
    print_stats("load/1filex1/reference", data[-1])

    # %%
    # Load with ``onnx_light.onnx.reference.ReferenceEvaluator`` using parallel
    # tensor loading.  The model is loaded with ``num_threads > 1`` before
    # building the reference runtime.

    data.append(
        measure(
            "load/1filex4/reference",
            lambda: ReferenceEvaluator(onnxl.load(onnx_path, num_threads=4)),
        )
    )
    print_stats("load/1filex4/reference", data[-1])

    # %%
    # Load with ``onnxruntime`` (all optimizations disabled).
    # ``InferenceSession`` is created with ``ORT_DISABLE_ALL`` so the
    # measurement captures only model loading overhead, not graph optimization.

    if ort is not None:
        data.append(
            measure(
                "load/1filex1/ort",
                lambda: ort.InferenceSession(onnx_path, sess_options=_ort_sess_opts),
            )
        )
        print_stats("load/1filex1/ort", data[-1])
load/1filex1/onnx                   avg=136.0 ms median=129.7 ms max=166.1 ms std=15.3 ms
load/1filex1/onnxlight              avg=77.4 ms median=77.5 ms max=77.9 ms std=0.3 ms
load/1filex4/onnxlight              avg=48.4 ms median=49.2 ms max=50.1 ms std=1.7 ms
load/1filex1/onnxlight-mmap         avg=78.8 ms median=78.9 ms max=79.3 ms std=0.4 ms
load/1filex1/onnxlight-ifstream     avg=78.0 ms median=77.9 ms max=79.2 ms std=0.8 ms
load/1filex1/ir-py                  avg=137.1 ms median=123.9 ms max=181.2 ms std=22.4 ms
load/1filex1/reference              avg=49.5 ms median=47.3 ms max=56.9 ms std=3.8 ms
load/1filex4/reference              avg=48.7 ms median=48.9 ms max=50.7 ms std=1.5 ms
load/1filex1/ort                    avg=271.9 ms median=271.3 ms max=296.7 ms std=19.4 ms

Serialize and Parse benchmarks#

def _serialize_onnx() -> bytes:
    """Serializes the ONNX model to bytes."""
    return onx.SerializeToString()


def _serialize_onnxlight() -> bytes:
    """Serializes the onnx_light model to bytes."""
    return onxl.SerializeToString()


def _serialize_onnxlight_x4() -> bytes:
    """Serializes the onnx_light model in parallel to bytes."""
    return onxl.SerializeToString(opts_serial_x4)


if _run_scenario("serialize"):
    opts_serial_x4 = onnxl.SerializeOptions()
    opts_serial_x4.num_threads = 4

    assert len(_serialize_onnx()) > 0
    assert len(_serialize_onnxlight()) > 0
    assert len(_serialize_onnxlight_x4()) > 0

    data.append(measure("serialize/x1/onnx", _serialize_onnx))
    print_stats("serialize/x1/onnx", data[-1])
    data.append(measure("serialize/x1/onnxlight", _serialize_onnxlight))
    print_stats("serialize/x1/onnxlight", data[-1])
    data.append(measure("serialize/x4/onnxlight", _serialize_onnxlight_x4))
    print_stats("serialize/x4/onnxlight", data[-1])
serialize/x1/onnx                   avg=267.6 ms median=265.5 ms max=279.3 ms std=9.4 ms
serialize/x1/onnxlight              avg=192.7 ms median=192.5 ms max=193.9 ms std=0.9 ms
serialize/x4/onnxlight              avg=186.3 ms median=181.1 ms max=211.6 ms std=12.9 ms

ParseFromString comparison between onnx and onnx_light.onnx.

def _parse_onnx() -> onnxl.ModelProto:
    """Parses ONNX bytes into a ModelProto."""
    import onnx

    parsed = onnx.ModelProto()
    parsed.ParseFromString(serialized_onnx)
    return parsed


def _parse_onnxlight() -> onnxl.ModelProto:
    """Parses onnx_light bytes into a ModelProto."""
    parsed = onnxl.ModelProto()
    parsed.ParseFromString(serialized_onnxlight)
    return parsed


def _parse_onnxlight_x4() -> onnxl.ModelProto:
    """Parses onnx_light bytes in parallel into a ModelProto."""
    parsed = onnxl.ModelProto()
    parsed.ParseFromString(serialized_onnxlight, opts_parse_x4)
    return parsed


def _parse_onnxlight_nc() -> onnxl.ModelProto:
    """Parses onnx_light bytes without copying raw tensor data (zero-copy)."""
    parsed = onnxl.ModelProto()
    parsed.ParseFromString(serialized_onnxlight, opts_parse_nc)
    return parsed


def _parse_onnxlight_nc_x4() -> onnxl.ModelProto:
    """Parses onnx_light bytes in parallel without copying raw tensor data (zero-copy, 4 t)."""
    parsed = onnxl.ModelProto()
    parsed.ParseFromString(serialized_onnxlight, opts_parse_nc_x4)
    return parsed


if _run_scenario("parse"):
    serialized_onnx = onx.SerializeToString()
    serialized_onnxlight = onxl.SerializeToString()
    opts_parse_x4 = onnxl.ParseOptions()
    opts_parse_x4.num_threads = 4
    opts_parse_nc = onnxl.ParseOptions()
    opts_parse_nc.no_copy = True
    opts_parse_nc_x4 = onnxl.ParseOptions()
    opts_parse_nc_x4.no_copy = True
    opts_parse_nc_x4.num_threads = 4

    parsed_onnx = _parse_onnx()
    assert parsed_onnx.ir_version == onx.ir_version
    assert len(parsed_onnx.graph.node) == len(onx.graph.node)
    parsed_onnxlight = _parse_onnxlight()
    assert parsed_onnxlight.ir_version == onxl.ir_version
    assert len(parsed_onnxlight.graph.node) == len(onxl.graph.node)
    parsed_onnxlight_x4 = _parse_onnxlight_x4()
    assert parsed_onnxlight_x4.ir_version == onxl.ir_version
    assert len(parsed_onnxlight_x4.graph.node) == len(onxl.graph.node)
    parsed_onnxlight_nc = _parse_onnxlight_nc()
    assert parsed_onnxlight_nc.ir_version == onxl.ir_version
    assert len(parsed_onnxlight_nc.graph.node) == len(onxl.graph.node)
    parsed_onnxlight_nc_x4 = _parse_onnxlight_nc_x4()
    assert parsed_onnxlight_nc_x4.ir_version == onxl.ir_version
    assert len(parsed_onnxlight_nc_x4.graph.node) == len(onxl.graph.node)

    data.append(measure("parse/x1/onnx", _parse_onnx))
    print_stats("parse/x1/onnx", data[-1])
    data.append(measure("parse/x1/onnxlight", _parse_onnxlight))
    print_stats("parse/x1/onnxlight", data[-1])
    data.append(measure("parse/x4/onnxlight", _parse_onnxlight_x4))
    print_stats("parse/x4/onnxlight", data[-1])

    # %%
    # Parse with zero-copy (``no_copy=True``): raw tensor data is not copied.
    # The pointer inside each TensorProto points directly into ``serialized_onnxlight``.
    # The bytes object **must** remain alive for as long as the parsed model is used.

    data.append(measure("parse/nc/onnxlight", _parse_onnxlight_nc))
    print_stats("parse/nc/onnxlight", data[-1])

    # %%
    # Parse with zero-copy **and** parallel tensor reads (``no_copy=True, num_threads=4``).
    # Combines the allocation savings of zero-copy with multi-threaded I/O for large models.

    data.append(measure("parse/ncx4/onnxlight", _parse_onnxlight_nc_x4))
    print_stats("parse/ncx4/onnxlight", data[-1])
parse/x1/onnx                       avg=205.1 ms median=197.1 ms max=235.1 ms std=15.8 ms
parse/x1/onnxlight                  avg=188.7 ms median=187.6 ms max=193.4 ms std=2.5 ms
parse/x4/onnxlight                  avg=94.5 ms median=95.1 ms max=96.0 ms std=1.4 ms
parse/nc/onnxlight                  avg=0.0 ms median=0.0 ms max=0.0 ms std=0.0 ms
parse/ncx4/onnxlight                avg=0.0 ms median=0.0 ms max=0.0 ms std=0.0 ms

Save benchmarks#

Save once with external data (not benchmarked) using onnx_light.onnx so that the in-memory model is not modified (ClearExternalData restores it after the C++ write). Absolute paths ensure onnxlight stores only the basename in the .onnx metadata, letting both onnx.load and onnxl.load resolve the data file automatically.

if _run_scenario("save"):
    # %%
    # Save with ``onnx``.
    import onnx

    out_onnx = os.path.join(tmp_dir, "out_onnx.onnx")
    data.append(measure("save/1filex1/onnx", lambda: onnx.save(onx, out_onnx)))
    print_stats("save/1filex1/onnx", data[-1])

    # %%
    # Save with ``onnx`` using external data.
    # This is the slow path: Python iterates every tensor, creates a numpy
    # intermediate, and calls Python I/O for each weight blob.

    out_onnx_ext = os.path.join(tmp_dir, "out_onnx_ext.onnx")
    out_onnx_ext_location = "out_onnx_ext.data"
    out_onnx_ext_data = os.path.join(tmp_dir, out_onnx_ext_location)

    def _save_onnx_external_with_flush() -> None:
        onnx.save_model(
            onx,
            out_onnx_ext,
            save_as_external_data=True,
            all_tensors_to_one_file=True,
            location=out_onnx_ext_location,
        )
        _flush_file(out_onnx_ext_data)
        _flush_file(out_onnx_ext)

    data.append(measure("save/2filex1/onnx", _save_onnx_external_with_flush, n=1, warmup=0))
    print_stats("save/2filex1/onnx", data[-1])

    # %%
    # The onnx file is modified to store the external data.
    # Let's make sure it is not used again.
    onx = None

    # %%
    # Save with ``ir-py`` when the optional ``onnx_ir`` package is installed.

    if onnx_ir_module is not None and onx_ir is not None:
        out_irpy = os.path.join(tmp_dir, "out_irpy.onnx")
        data.append(measure("save/1filex1/ir-py", lambda: onnx_ir_module.save(onx_ir, out_irpy)))
        print_stats("save/1filex1/ir-py", data[-1])

        out_irpy_ext = os.path.join(tmp_dir, "out_irpy_ext.onnx")
        out_irpy_ext_location = "out_irpy_ext.data"
        out_irpy_ext_data = os.path.join(tmp_dir, out_irpy_ext_location)

        def _save_ir_py_external_with_flush() -> None:
            onnx_ir_module.save(onx_ir, out_irpy_ext, external_data=out_irpy_ext_location)
            _flush_file(out_irpy_ext_data)
            _flush_file(out_irpy_ext)

        data.append(measure("save/2filex1/ir-py", _save_ir_py_external_with_flush, n=1, warmup=0))
        print_stats("save/2filex1/ir-py", data[-1])
    else:
        print("onnx_ir is not installed, skipping ir-py save benchmarks.")

    # %%
    # Save with ``onnx_light.onnx``.

    out_onnxl = os.path.join(tmp_dir, "out_onnxlight.onnx")
    data.append(
        measure("save/1filex1/onnxlight", lambda: onnxl.save(onxl, out_onnxl, num_threads=1))
    )
    print_stats("save/1filex1/onnxlight", data[-1])

    # %%
    # Save with ``onnx_light.onnx`` parallelized.

    out_onnxl_x4 = os.path.join(tmp_dir, "out_onnxlight_x4.onnx")
    data.append(
        measure(
            "save/1filex4/onnxlight", lambda: onnxl.save(onxl_x4, out_onnxl_x4, num_threads=4)
        )
    )
    print_stats("save/1filex4/onnxlight", data[-1])

    # %%
    # Save with ``onnx_light.onnx`` using external data.
    # All work is done in C++: ``PopulateExternalData`` attaches metadata once,
    # ``SerializeToStream`` routes large ``raw_data`` blobs directly to the
    # weights file via ``TwoFilesWriteStream``, and ``ClearExternalData``
    # restores the in-memory model.  No numpy arrays are created.
    # As for the ``onnx`` row, the two output files are explicitly ``fsync``-ed
    # so both benchmarks include descriptor flush/write-back costs.
    # The main ``.onnx`` structure is accumulated in a ``StringWriteStream``
    # (memory buffer) and flushed to disk in a single write after all tensor
    # data has been written, mirroring the sequential I/O pattern used by
    # ``onnx.save_model`` and allowing OS-level write coalescing.

    out_ext = os.path.join(tmp_dir, "out_ext.onnx")
    out_ext_data = out_ext + ".data"

    def _save_onnxlight_external_with_flush() -> None:
        onnxl.save(onxl, out_ext, location=out_ext_data, num_threads=1)
        _flush_file(out_ext_data)
        _flush_file(out_ext)

    data.append(measure("save/2filex1/onnxlight", _save_onnxlight_external_with_flush))
    print_stats("save/2filex1/onnxlight", data[-1])

    # %%
    # Save with ``onnx_light.onnx`` using external data parallelized.

    out_ext_x4 = os.path.join(tmp_dir, "out_ext_x4.onnx")
    out_ext_x4_data = out_ext_x4 + ".data"
    data.append(
        measure(
            "save/2filex4/onnxlight",
            lambda: onnxl.save(onxl, out_ext_x4, location=out_ext_x4_data, num_threads=4),
        )
    )
    print_stats("save/2filex4/onnxlight", data[-1])
save/1filex1/onnx                   avg=4413.5 ms median=4345.2 ms max=4733.2 ms std=256.7 ms
save/2filex1/onnx                   avg=3537.1 ms median=3537.1 ms max=3537.1 ms std=0.0 ms
save/1filex1/ir-py                  avg=3766.7 ms median=3727.1 ms max=4509.2 ms std=435.2 ms
save/2filex1/ir-py                  avg=3603.1 ms median=3603.1 ms max=3603.1 ms std=0.0 ms
save/1filex1/onnxlight              avg=3899.9 ms median=3982.2 ms max=4307.2 ms std=312.4 ms
save/1filex4/onnxlight              avg=530.4 ms median=629.0 ms max=848.3 ms std=233.6 ms
save/2filex1/onnxlight              avg=3184.9 ms median=3138.9 ms max=3517.6 ms std=187.2 ms
save/2filex4/onnxlight              avg=293.2 ms median=296.8 ms max=330.6 ms std=30.4 ms

C++ benchmarks#

Run the standalone C++ benchmark executables when available. These scenarios measure the same operations as load and save but use the compiled C++ timing executables directly, bypassing the Python interpreter overhead entirely.

if _run_scenario("cpp"):
    # %%
    # Load with standalone C++ ``load_onnx_light_time`` example when available.
    # The executable uses ``FileStream`` as well, so this row measures the same
    # file-backed parsing path as ``onnxl.load(onnx_path)``.

    cpp_load_x1_reasons: list[str] = []
    cpp_load_x1 = _measure_cpp_load_with_example(
        onnx_path, num_threads=1, reasons=cpp_load_x1_reasons
    )
    if cpp_load_x1 is not None:
        data.append(cpp_load_x1)
        print_stats(cpp_load_x1["name"], cpp_load_x1)
    else:
        detail = f" Reason: {'; '.join(cpp_load_x1_reasons)}" if cpp_load_x1_reasons else ""
        print(
            "load_onnx_light_time executable not found (or failed), "
            "skipping C++ load benchmark." + detail
        )

    cpp_load_x4 = _measure_cpp_load_with_example(onnx_path, num_threads=4)
    if cpp_load_x4 is not None:
        data.append(cpp_load_x4)
        print_stats(cpp_load_x4["name"], cpp_load_x4)

    # %%
    # Load an external-data model with standalone C++ ``load_onnx_light_time``
    # using ``no_copy`` shared external buffers.

    cpp_load_ext_nc = _measure_cpp_load_with_example(
        ext_load_onnx, num_threads=1, file_count=2, no_copy=True, touch_raw_data_pages=True
    )
    if cpp_load_ext_nc is not None:
        data.append(cpp_load_ext_nc)
        print_stats(cpp_load_ext_nc["name"], cpp_load_ext_nc)

    # %%
    # Load with standalone C++ ``load_onnx_time`` example when available.
    # The executable uses the standard onnx protobuf library for loading.

    cpp_load_onnx_x1_reasons: list[str] = []
    cpp_load_onnx_x1 = _measure_cpp_load_with_example(
        onnx_path,
        num_threads=1,
        executable_name="load_onnx_time",
        reasons=cpp_load_onnx_x1_reasons,
    )
    if cpp_load_onnx_x1 is not None:
        data.append(cpp_load_onnx_x1)
        print_stats(cpp_load_onnx_x1["name"], cpp_load_onnx_x1)
    else:
        detail = (
            f" Reason: {'; '.join(cpp_load_onnx_x1_reasons)}" if cpp_load_onnx_x1_reasons else ""
        )
        print(
            "load_onnx_time executable not found (or failed), "
            "skipping C++ load benchmark." + detail
        )

    # %%
    # Save with standalone C++ ``save_onnx_light_time`` example when available.

    cpp_save_x1_reasons: list[str] = []
    cpp_save_x1 = _measure_cpp_save_with_example(
        onnx_path, num_threads=1, reasons=cpp_save_x1_reasons
    )
    if cpp_save_x1 is not None:
        data.append(cpp_save_x1)
        print_stats(cpp_save_x1["name"], cpp_save_x1)
    else:
        detail = f" Reason: {'; '.join(cpp_save_x1_reasons)}" if cpp_save_x1_reasons else ""
        print(
            "save_onnx_light_time executable not found (or failed), "
            "skipping C++ save benchmark." + detail
        )

    cpp_save_x4 = _measure_cpp_save_with_example(onnx_path, num_threads=4)
    if cpp_save_x4 is not None:
        data.append(cpp_save_x4)
        print_stats(cpp_save_x4["name"], cpp_save_x4)
load/1filex1/onnxlight-cpp          avg=35.4 ms median=34.9 ms max=44.2 ms std=2.3 ms
load/1filex4/onnxlight-cpp          avg=31.0 ms median=30.8 ms max=34.2 ms std=1.3 ms
load/2filex1/onnxlight-cpp-nocopy   avg=1.2 ms median=1.2 ms max=1.2 ms std=0.0 ms
load/1filex1/onnx-cpp               avg=94.5 ms median=94.3 ms max=99.1 ms std=1.3 ms
save/1filex1/onnxlight-cpp          avg=3686.7 ms median=3522.0 ms max=4510.6 ms std=380.9 ms
save/1filex4/onnxlight-cpp          avg=367.6 ms median=354.7 ms max=591.9 ms std=62.3 ms

Load with onnx using external data#

Reload the model previously saved with external data using onnx.load.

if _run_scenario("load"):
    data.append(
        measure("load/2filex1/onnx", lambda: onnxl.load(ext_load_onnx, load_external_data=True))
    )
    print_stats("load/2filex1/onnx", data[-1])

    # %%
    # Load with ``onnx_light.onnx`` using external data.
    # Reload the same external-data model using ``onnxl.load``.

    data.append(
        measure(
            "load/2filex1/onnxlight",
            lambda: onnxl.load(ext_load_onnx, location=ext_load_data, num_threads=1),
        )
    )
    print_stats("load/2filex1/onnxlight", data[-1])

    # %%
    # Load with ``onnx_light.onnx`` using external data and shared no-copy buffers.
    # Each external weights file is read once, then every tensor borrows a view
    # into that shared buffer.

    data.append(
        measure(
            "load/2filex1/onnxlight-nocopy",
            lambda: onnxl.load(
                ext_load_onnx,
                location=ext_load_data,
                no_copy=True,
                touch_raw_data_pages=True,
                num_threads=1,
            ),
        )
    )
    print_stats("load/2filex1/onnxlight-nocopy", data[-1])

    # %%
    # Load with ``onnx_light.onnx`` using external data and parallel tensor loading.
    # Combine external-data loading with ``num_threads > 1`` for maximum throughput.

    data.append(
        measure(
            "load/2filex4/onnxlight",
            lambda: onnxl.load(ext_load_onnx, location=ext_load_data, num_threads=4),
        )
    )
    print_stats("load/2filex4/onnxlight", data[-1])

    # %%
    # Load with ``ir-py`` using external data.

    if onnx_ir_module is not None:
        data.append(measure("load/2filex1/ir-py", lambda: onnx_ir_module.load(ext_load_onnx)))
        print_stats("load/2filex1/ir-py", data[-1])
    else:
        print("onnx_ir is not installed, skipping ir-py external-data load benchmark.")

    # %%
    # Load with ``onnxruntime`` using external data (all optimizations disabled).
    # Reload the external-data model with ``onnxruntime``, keeping
    # ``ORT_DISABLE_ALL`` so only loading overhead is measured.

    if ort is not None:
        data.append(
            measure(
                "load/2filex1/ort",
                lambda: ort.InferenceSession(ext_load_onnx, sess_options=_ort_sess_opts),
            )
        )
        print_stats("load/2filex1/ort", data[-1])

    # %%
    # Load with ``onnx_light.onnx.reference.ReferenceEvaluator`` using external
    # data.  The model (with its external weights) is loaded and turned into a
    # reference runtime.

    data.append(
        measure(
            "load/2filex1/reference",
            lambda: ReferenceEvaluator(onnxl.load(ext_load_onnx, location=ext_load_data)),
        )
    )
    print_stats("load/2filex1/reference", data[-1])

    # %%
    # Load with ``onnx_light.onnx.reference.ReferenceEvaluator`` using external
    # data and parallel tensor loading.  Combine external-data loading with
    # ``num_threads > 1`` before building the reference runtime.

    data.append(
        measure(
            "load/2filex4/reference",
            lambda: ReferenceEvaluator(
                onnxl.load(ext_load_onnx, location=ext_load_data, num_threads=4)
            ),
        )
    )
    print_stats("load/2filex4/reference", data[-1])
load/2filex1/onnx                   avg=29.7 ms median=29.6 ms max=30.0 ms std=0.2 ms
load/2filex1/onnxlight              avg=44.7 ms median=44.5 ms max=45.2 ms std=0.3 ms
load/2filex1/onnxlight-nocopy       avg=33.4 ms median=33.2 ms max=34.3 ms std=0.5 ms
load/2filex4/onnxlight              avg=29.7 ms median=29.5 ms max=30.0 ms std=0.2 ms
load/2filex1/ir-py                  avg=0.8 ms median=0.8 ms max=0.9 ms std=0.0 ms
load/2filex1/ort                    avg=186.7 ms median=188.0 ms max=189.1 ms std=2.7 ms
load/2filex1/reference              avg=30.8 ms median=30.8 ms max=31.0 ms std=0.2 ms
load/2filex4/reference              avg=30.6 ms median=30.6 ms max=31.2 ms std=0.5 ms

Results#

df = pandas.DataFrame(data).set_index("name").sort_index()
print(df)
df = df.sort_index(ascending=False)
                                     median       avg  ...       max           std
name                                                   ...
load/1filex1/ir-py                 0.123949  0.137070  ...  0.181195  2.237044e-02
load/1filex1/onnx                  0.129700  0.136037  ...  0.166128  1.528406e-02
load/1filex1/onnx-cpp              0.094321  0.094488  ...  0.099123  1.311000e-03
load/1filex1/onnxlight             0.077486  0.077432  ...  0.077902  2.940575e-04
load/1filex1/onnxlight-cpp         0.034929  0.035357  ...  0.044240  2.284000e-03
load/1filex1/onnxlight-ifstream    0.077857  0.077975  ...  0.079225  7.569977e-04
load/1filex1/onnxlight-mmap        0.078888  0.078780  ...  0.079288  4.050814e-04
load/1filex1/ort                   0.271330  0.271852  ...  0.296739  1.942305e-02
load/1filex1/reference             0.047262  0.049461  ...  0.056944  3.832783e-03
load/1filex4/onnxlight             0.049247  0.048376  ...  0.050102  1.672547e-03
load/1filex4/onnxlight-cpp         0.030828  0.030962  ...  0.034159  1.274000e-03
load/1filex4/reference             0.048871  0.048651  ...  0.050749  1.492774e-03
load/2filex1/ir-py                 0.000829  0.000837  ...  0.000898  3.435610e-05
load/2filex1/onnx                  0.029570  0.029684  ...  0.030014  1.999617e-04
load/2filex1/onnxlight             0.044534  0.044674  ...  0.045195  3.329486e-04
load/2filex1/onnxlight-cpp-nocopy  0.001192  0.001194  ...  0.001216  1.000000e-05
load/2filex1/onnxlight-nocopy      0.033232  0.033365  ...  0.034276  4.980980e-04
load/2filex1/ort                   0.187972  0.186681  ...  0.189113  2.716457e-03
load/2filex1/reference             0.030758  0.030763  ...  0.031031  1.588212e-04
load/2filex4/onnxlight             0.029528  0.029694  ...  0.030033  2.475257e-04
load/2filex4/reference             0.030589  0.030573  ...  0.031159  4.942593e-04
parse/nc/onnxlight                 0.000020  0.000020  ...  0.000023  1.304665e-06
parse/ncx4/onnxlight               0.000019  0.000019  ...  0.000021  8.324621e-07
parse/x1/onnx                      0.197110  0.205066  ...  0.235100  1.582749e-02
parse/x1/onnxlight                 0.187569  0.188736  ...  0.193360  2.518255e-03
parse/x4/onnxlight                 0.095070  0.094510  ...  0.095980  1.426805e-03
save/1filex1/ir-py                 3.727148  3.766736  ...  4.509204  4.351569e-01
save/1filex1/onnx                  4.345221  4.413481  ...  4.733215  2.567032e-01
save/1filex1/onnxlight             3.982202  3.899909  ...  4.307215  3.124098e-01
save/1filex1/onnxlight-cpp         3.522040  3.686682  ...  4.510614  3.808810e-01
save/1filex4/onnxlight             0.629047  0.530434  ...  0.848349  2.336192e-01
save/1filex4/onnxlight-cpp         0.354680  0.367550  ...  0.591948  6.234000e-02
save/2filex1/ir-py                 3.603080  3.603080  ...  3.603080  0.000000e+00
save/2filex1/onnx                  3.537066  3.537066  ...  3.537066  0.000000e+00
save/2filex1/onnxlight             3.138869  3.184871  ...  3.517627  1.872315e-01
save/2filex4/onnxlight             0.296845  0.293159  ...  0.330649  3.044209e-02
serialize/x1/onnx                  0.265459  0.267648  ...  0.279283  9.445642e-03
serialize/x1/onnxlight             0.192527  0.192700  ...  0.193894  9.236897e-04
serialize/x4/onnxlight             0.181108  0.186329  ...  0.211642  1.293022e-02

[39 rows x 5 columns]

Plot the results. The average and median are shown for each operation, with the average value and a 95% confidence interval (derived from the measured standard deviation) annotated alongside the average bar. Bars are colored by library: blue family for onnx, orange family for onnx_light, green family for onnxruntime. Solid shades represent the average; lighter shades the median.

Three graphs are produced: one with everything (plot_onnx_time.png), one restricted to the Python API (plot_onnx_time_python.png) and one restricted to the C++ API (plot_onnx_time_cpp.png). C++ API rows are those whose library part ends with -cpp (for example onnxlight-cpp or onnxlight-cpp-nocopy).

import matplotlib.patches as mpatches

_onnx_avg = "steelblue"
_onnx_med = "lightsteelblue"
_onnx_light_avg = "darkorange"
_onnx_light_med = "moccasin"
_ir_py_avg = "mediumpurple"
_ir_py_med = "thistle"
_ort_avg = "seagreen"
_ort_med = "lightgreen"


processor_name = get_processor_name()
total_memory_gb = get_total_memory_gb()
memory_str = f"{total_memory_gb:.1f} GB" if total_memory_gb is not None else "unknown"
cpu_topology = get_cpu_topology()
logical_cpus = cpu_topology["logical"] or os.cpu_count() or 0
physical_cores = cpu_topology["physical_cores"]
sockets = cpu_topology["sockets"]
cpu_parts: list[str] = []
if sockets is not None:
    cpu_parts.append(f"{sockets} processor{'s' if sockets != 1 else ''}")
if physical_cores is not None:
    cpu_parts.append(f"{physical_cores} physical core{'s' if physical_cores != 1 else ''}")
cpu_parts.append(f"{logical_cpus} logical processor{'s' if logical_cpus != 1 else ''}")
cpu_topology_str = ", ".join(cpu_parts)


def _is_cpp_api(name: str) -> bool:
    """Returns True when the benchmark row targets the C++ API.

    The library part of the benchmark key (last ``/`` component) ends with
    ``-cpp`` or contains ``-cpp-`` for the C++ standalone executables.
    """
    lib = name.rsplit("/", 1)[-1]
    return lib.endswith("-cpp") or "-cpp-" in lib


def plot_results(frame, title, png_path):
    """Plots benchmark ``frame`` into a horizontal bar chart saved to ``png_path``.

    Args:
        frame: A pandas DataFrame indexed by benchmark name with ``avg``,
            ``median`` and ``std`` columns.
        title: The figure title.
        png_path: The path of the PNG file to write.

    Returns:
        The matplotlib Axes used for the plot, or None when ``frame`` is empty.
    """
    if frame.empty:
        print(f"No data to plot for {png_path!r}, skipping.")
        return None

    ax = frame[["avg", "median"]].plot.barh(
        title=title, xlabel="seconds", legend=False, figsize=(12, 8)
    )

    # Row names use "onnxlight" / "ort" as recorded during benchmarking.
    row_names = frame.index.tolist()
    for container, col in zip(ax.containers, ["avg", "median"]):
        for bar, name in zip(container, row_names):
            if "onnxlight" in name:
                if col == "avg":
                    bar.set_facecolor(_onnx_light_avg)
                elif col == "median":
                    bar.set_facecolor(_onnx_light_med)
            elif "/ir-py" in name:
                if col == "avg":
                    bar.set_facecolor(_ir_py_avg)
                elif col == "median":
                    bar.set_facecolor(_ir_py_med)
            elif "/ort" in name:
                if col == "avg":
                    bar.set_facecolor(_ort_avg)
                elif col == "median":
                    bar.set_facecolor(_ort_med)
            else:
                if col == "avg":
                    bar.set_facecolor(_onnx_avg)
                elif col == "median":
                    bar.set_facecolor(_onnx_med)

    first_container = ax.containers[0]
    for bar, name in zip(first_container, row_names):
        avg = frame.loc[name, "avg"]
        std = frame.loc[name, "std"]
        if not np.isfinite(avg):
            continue
        if np.isfinite(std):
            ci = 1.96 * std
            label = f" {avg * 1e3:.1f} ±{ci * 1e3:.1f} ms"
        else:
            label = f" {avg * 1e3:.1f} ms"
        ax.text(
            bar.get_width(), bar.get_y() + bar.get_height() / 2.0, label, va="center", ha="left"
        )

    legend_handles = [
        mpatches.Patch(color=_onnx_avg, label="onnx avg"),
        mpatches.Patch(color=_onnx_med, label="onnx median"),
        mpatches.Patch(color=_onnx_light_avg, label="onnx_light avg"),
        mpatches.Patch(color=_onnx_light_med, label="onnx_light median"),
        mpatches.Patch(color=_ir_py_avg, label="ir-py avg"),
        mpatches.Patch(color=_ir_py_med, label="ir-py median"),
        mpatches.Patch(color=_ort_avg, label="ort avg"),
        mpatches.Patch(color=_ort_med, label="ort median"),
    ]
    ax.legend(handles=legend_handles)
    ax.grid(axis="x")
    for label in ax.get_yticklabels():
        label.set_horizontalalignment("left")
    ax.tick_params(axis="y", pad=160)
    ax.figure.tight_layout()
    ax.figure.savefig(png_path)
    return ax


_common_title = (
    f"size={file_size / 2 ** 20:.2f} MB (lower is better)\n"
    f"CPU: {processor_name} ({cpu_topology_str}), RAM: {memory_str}\n"
    f"benchmark key: <op>/<files>x<threads>/<lib>\n"
    f"op=load|save|parse|serialize, files=1|2, threads=1|4, "
    f"lib=onnx|onnx-cpp|onnxlight|onnxlight-cpp|onnxlight-cpp-nocopy|"
    f"onnxlight-nocopy|ir-py|ort|reference"
)

# Produce one graph with everything, then split the results into a
# Python-API-only plot and a C++-API-only plot.  Each graph is rendered in its
# own figure.
plot_results(
    df,
    f"onnx vs onnx_light vs ort load/save (s) - all APIs, {_common_title}",
    "plot_onnx_time.png",
)
onnx vs onnx_light vs ort load/save (s) - all APIs, size=640.00 MB (lower is better) CPU: AMD EPYC 9V45 96-Core Processor (1 processor, 2 physical cores, 4 logical processors), RAM: 15.6 GB benchmark key: <op>/<files>x<threads>/<lib> op=load|save|parse|serialize, files=1|2, threads=1|4, lib=onnx|onnx-cpp|onnxlight|onnxlight-cpp|onnxlight-cpp-nocopy|onnxlight-nocopy|ir-py|ort|reference

Python API only#

The second figure keeps only the rows measured through the Python API.

cpp_mask = [_is_cpp_api(name) for name in df.index]
df_cpp = df[cpp_mask]
df_python = df[[not is_cpp for is_cpp in cpp_mask]]

plot_results(
    df_python,
    f"onnx vs onnx_light vs ort load/save (s) - Python API, {_common_title}",
    "plot_onnx_time_python.png",
)
onnx vs onnx_light vs ort load/save (s) - Python API, size=640.00 MB (lower is better) CPU: AMD EPYC 9V45 96-Core Processor (1 processor, 2 physical cores, 4 logical processors), RAM: 15.6 GB benchmark key: <op>/<files>x<threads>/<lib> op=load|save|parse|serialize, files=1|2, threads=1|4, lib=onnx|onnx-cpp|onnxlight|onnxlight-cpp|onnxlight-cpp-nocopy|onnxlight-nocopy|ir-py|ort|reference

C++ API only#

The third figure keeps only the rows measured through the C++ API.

plot_results(
    df_cpp,
    f"onnx vs onnx_light load/save (s) - C++ API, {_common_title}",
    "plot_onnx_time_cpp.png",
)
onnx vs onnx_light load/save (s) - C++ API, size=640.00 MB (lower is better) CPU: AMD EPYC 9V45 96-Core Processor (1 processor, 2 physical cores, 4 logical processors), RAM: 15.6 GB benchmark key: <op>/<files>x<threads>/<lib> op=load|save|parse|serialize, files=1|2, threads=1|4, lib=onnx|onnx-cpp|onnxlight|onnxlight-cpp|onnxlight-cpp-nocopy|onnxlight-nocopy|ir-py|ort|reference

Cleanup#

Remove all temporary files created during the benchmark.

shutil.rmtree(tmp_dir, ignore_errors=True)

Total running time of the script: (3 minutes 29.751 seconds)

Related examples

Profiles ONNX external-data save time

Profiles ONNX external-data save time

Number of threads used to load and save ONNX models

Number of threads used to load and save ONNX models

Save an ONNX model in the ORT flatbuffer format and compare sizes

Save an ONNX model in the ORT flatbuffer format and compare sizes

Gallery generated by Sphinx-Gallery

Example last updated

Date:

2026-08-21