Easy, fast, and memory-efficient structure prediction inference
41
stars
1
commits
Python
primary language
Sep 10, 2026
updated
GPU-accelerated inference for protein, nucleic-acid, and ligand structure prediction models — from FASTA/MSA to PDB/mmCIF.

BioNeMo Inference Runtime (BioIR) is NVIDIA's library for structure-prediction
inference. A five-stage GPU pipeline turns AlphaFold-lineage and all-atom models
into PDB/mmCIF with confidence scores. Models stay ordinary nn.Modules — no
TensorRT engine build.
manylinux_2_34, so the host needs glibc 2.34 or newer — Ubuntu 22.04, RHEL 9
or later.cp312, so pip finds no
matching build on a newer interpreter.PyTorch and the CUDA math libraries arrive as wheel dependencies, or in
nvcr.io/nvidia/pytorch:26.05-py3 when you use the container. Building the
extension from source outside a container needs a C++17 compiler and CUDA
headers as well —
docs/dev.md.
H200, H100, A100, L40S, GB200 and GB300. Measured speedup, memory and accuracy
for each: docs/ref/benchmark.md.
BioIR runs on more than these. The support matrix lists every architecture the backend covers and which fused kernels apply to each; those devices work but are not part of this release's qualification.
BioIR is published on PyPI, one wheel per CPU architecture:
pip install bionemo-ir
The wheel ships the kernels precompiled, so nothing in the install builds CUDA
and running it needs only the driver's libcuda.so.1. That is the whole
install if you are calling BioIR from your own code — the container below is
for working on BioIR itself. docs/install.md covers the
environment setup and the requirements in full.
Configure SSH authentication with GitHub, then clone the repository and fetch its submodules and LFS objects.
git lfs install &&
GIT_LFS_SKIP_SMUDGE=0 \
git clone --recurse-submodules \
git@github.com:NVIDIA-BioNeMo/BioNeMo-Inference-Runtime.git &&
cd BioNeMo-Inference-Runtime
Then, build the dev image and open a shell in it:
docker/dev.sh
The image carries the dependencies; your checkout is bind-mounted, so install the package once inside and fold something:
pip install -e '.[dev]'
scripts/fetch_weights.sh --model boltz-2
python examples/folding/run_demo.py --output-dir output
Checkpoints come from their upstream publishers and need no NVIDIA credentials;
anything that cannot be fetched is skipped, and the tests needing it skip too.
Running scripts/run_tests.sh stages weights and runs the suite the way CI
does.
Building without a container needs more than a Python environment — see
docs/dev.md for
the prerequisites and the wheel build. The rest of that page covers daily
development; docs/ref/docker-images.md covers the
images and what docker/dev.sh mounts.
BioIR documentation lives under docs/ and is published with Fern:
build_processor, model constructors,
inputs/outputsBaseConfig tree and
pipeline stage configsbuild_processor
demoFolding benchmarks over a bench set the shipped
rebuild_dataset.py builds from RCSB
and NVIDIA's MSA Search NIM — there is no dataset release to download.
Template-bearing samples included: both sides load every bundled MSA and attach
every listed template.
model.forward(). Featurization, transfers,
postprocessing, writing, and scoring stay outside the window.torch.compile when it
passes a dynamic-shape probe.OSS forward / BioIR forward; above 1 favors BioIR.| Model | H100 | H200 |
|---|---|---|
| Boltz-2 | 1.78x / 2.65x | 1.74x / 2.54x |
| OpenFold3 | 1.55x / 2.02x | 1.54x / 2.03x |
| OpenFold2 / AlphaFold2 monomer | 2.55x / 2.60x | 2.61x / 2.66x |
| OpenFold2 / AlphaFold2 multimer | 2.66x / 2.77x | 2.61x / 2.75x |
| Protenix | — / 1.87x | — / 1.84x |
Geomean speedup, vs OSS torch.compile / vs OSS PyTorch eager; above 1 favours
BioIR. Protenix has no torch.compile path. Fourteen GPUs, per-model accuracy
and peak memory, and how to reproduce any of it:
docs/ref/benchmark.md.
The bench-perf-oss agent skill has
the full gates, environment isolation, result schema, and charting protocol.
We welcome contributions. See contributing.md for
policy and docs/dev.md for the development workflow.
If you use BioIR in your research, please cite it via
CITATION.cff.
SECURITY.md — do not
file a public issueNVIDIA-authored BioIR code is licensed under the Apache License 2.0. Distribution compliance material is available here:
1 commits
Hacker News (1)
Python
92.7%
C++
5.3%
Shell
1.4%
Easy, fast, and memory-efficient structure prediction inference
41
stars
1
commits
Python
primary language
Sep 10, 2026
updated
GPU-accelerated inference for protein, nucleic-acid, and ligand structure prediction models — from FASTA/MSA to PDB/mmCIF.

BioNeMo Inference Runtime (BioIR) is NVIDIA's library for structure-prediction
inference. A five-stage GPU pipeline turns AlphaFold-lineage and all-atom models
into PDB/mmCIF with confidence scores. Models stay ordinary nn.Modules — no
TensorRT engine build.
manylinux_2_34, so the host needs glibc 2.34 or newer — Ubuntu 22.04, RHEL 9
or later.cp312, so pip finds no
matching build on a newer interpreter.PyTorch and the CUDA math libraries arrive as wheel dependencies, or in
nvcr.io/nvidia/pytorch:26.05-py3 when you use the container. Building the
extension from source outside a container needs a C++17 compiler and CUDA
headers as well —
docs/dev.md.
H200, H100, A100, L40S, GB200 and GB300. Measured speedup, memory and accuracy
for each: docs/ref/benchmark.md.
BioIR runs on more than these. The support matrix lists every architecture the backend covers and which fused kernels apply to each; those devices work but are not part of this release's qualification.
BioIR is published on PyPI, one wheel per CPU architecture:
pip install bionemo-ir
The wheel ships the kernels precompiled, so nothing in the install builds CUDA
and running it needs only the driver's libcuda.so.1. That is the whole
install if you are calling BioIR from your own code — the container below is
for working on BioIR itself. docs/install.md covers the
environment setup and the requirements in full.
Configure SSH authentication with GitHub, then clone the repository and fetch its submodules and LFS objects.
git lfs install &&
GIT_LFS_SKIP_SMUDGE=0 \
git clone --recurse-submodules \
git@github.com:NVIDIA-BioNeMo/BioNeMo-Inference-Runtime.git &&
cd BioNeMo-Inference-Runtime
Then, build the dev image and open a shell in it:
docker/dev.sh
The image carries the dependencies; your checkout is bind-mounted, so install the package once inside and fold something:
pip install -e '.[dev]'
scripts/fetch_weights.sh --model boltz-2
python examples/folding/run_demo.py --output-dir output
Checkpoints come from their upstream publishers and need no NVIDIA credentials;
anything that cannot be fetched is skipped, and the tests needing it skip too.
Running scripts/run_tests.sh stages weights and runs the suite the way CI
does.
Building without a container needs more than a Python environment — see
docs/dev.md for
the prerequisites and the wheel build. The rest of that page covers daily
development; docs/ref/docker-images.md covers the
images and what docker/dev.sh mounts.
BioIR documentation lives under docs/ and is published with Fern:
build_processor, model constructors,
inputs/outputsBaseConfig tree and
pipeline stage configsbuild_processor
demoFolding benchmarks over a bench set the shipped
rebuild_dataset.py builds from RCSB
and NVIDIA's MSA Search NIM — there is no dataset release to download.
Template-bearing samples included: both sides load every bundled MSA and attach
every listed template.
model.forward(). Featurization, transfers,
postprocessing, writing, and scoring stay outside the window.torch.compile when it
passes a dynamic-shape probe.OSS forward / BioIR forward; above 1 favors BioIR.| Model | H100 | H200 |
|---|---|---|
| Boltz-2 | 1.78x / 2.65x | 1.74x / 2.54x |
| OpenFold3 | 1.55x / 2.02x | 1.54x / 2.03x |
| OpenFold2 / AlphaFold2 monomer | 2.55x / 2.60x | 2.61x / 2.66x |
| OpenFold2 / AlphaFold2 multimer | 2.66x / 2.77x | 2.61x / 2.75x |
| Protenix | — / 1.87x | — / 1.84x |
Geomean speedup, vs OSS torch.compile / vs OSS PyTorch eager; above 1 favours
BioIR. Protenix has no torch.compile path. Fourteen GPUs, per-model accuracy
and peak memory, and how to reproduce any of it:
docs/ref/benchmark.md.
The bench-perf-oss agent skill has
the full gates, environment isolation, result schema, and charting protocol.
We welcome contributions. See contributing.md for
policy and docs/dev.md for the development workflow.
If you use BioIR in your research, please cite it via
CITATION.cff.
SECURITY.md — do not
file a public issueNVIDIA-authored BioIR code is licensed under the Apache License 2.0. Distribution compliance material is available here:
Hacker News (1)
1 commits
Python
92.7%
C++
5.3%
Shell
1.4%