NVIDIA BioIR boosts Boltz-2 protein folding throughput by 2.9x on H100 GPUs
NVIDIA has detailed BioNeMo Inference Runtime (BioIR), a Python library designed to accelerate biomolecular structure prediction on NVIDIA GPUs. By optimizing kernel selection, module execution via CUDA Graphs, and pipeline scaling with Ray, BioIR maintains standard PyTorch workflows while significantly improving efficiency. The tool is already deployed at scale, having powered the expansion of…
Key points
- BioIR achieves 2.90x higher throughput for Boltz-2 on 8xH100 GPUs compared to standard PyTorch implementations.
- The runtime processed 31 million candidate complexes for the AlphaFold Database expansion, releasing 1.81 million high-confidence predictions.
- NVIDIA estimates BioIR reduces energy usage for one million targets from 35 MWh to 11 MWh, significantly lowering computational costs.
In a matched benchmark using 8x H100 GPUs, BioIR-accelerated Boltz-2 achieved 58,500 folded residues per GPU-hour, compared to 20,200 for a standard torch-compiled implementation. This represents a 2.90x increase in throughput and eliminated out-of-memory errors encountered in the baseline run. NVIDIA estimates that scaling this performance to one million targets could reduce energy consumption from 35 MWh to 11 MWh, offering substantial savings for large-scale proteome campaigns.
BioIR is available as an open-source GitHub repository, requiring Python 3.12+ and compatible NVIDIA drivers. It supports models like Boltz-2, OpenFold2, and OpenFold3, allowing developers to integrate optimized modules directly into custom code or use the end-to-end processor for full pipeline automation.
NVIDIA Details BioNeMo Inference Runtime (BioIR): 2.90x Higher Boltz-2 Folding Throughput and 58.5K Residues per GPU-Hour on 8xH100
MarkTechPost · 10 September 2026Biomolecular structure prediction has shifted from single-target runs to proteome-scale worklists. The bottleneck is no longer whether a model can fold a protein. It is how fast an entire queue of independent targets moves through parsing, featurization, GPU inference, and output writing. NVIDIA’s new technical deep dive walks through BioNeMo Inference Runtime (BioIR), a Python library that accelerates supported structure-prediction models on NVIDIA GPUs while keeping the standard PyTorch workflow. BioIR has already run at production scale. It powered the recent expansion of the AlphaFold Database, generating protein-complex structures across 4,777 proteomes, about 31 million candidate complexes, with 1.81 million released as high-confidence predictions.
Is it deployable? Yes. BioIR is available now as an open GitHub repository with a wheel containing precompiled CUBINs. Runtime use needs Python 3.12+, a compatible NVIDIA GPU and driver, a staged model checkpoint, and per-chain A3M MSAs. It does not require nvcc, CUDA source, CMake, or the CUDA toolkit.
What is BioIR
BioIR targets the operations that general-purpose inference stacks do not fully optimize. These include Pairformer and Evoformer stacks, triangle operations, pairwise attention, diffusion transformers, and atom-level modules. Models stay ordinary torch.nn.Module objects. There is no engine build, export step, or separate artifact between a checkpoint and a forward pass.
There are 2 ways to use it. The end-to-end processor moves an InputRequest through parsing, tokenization, feature generation, GPU inference, and PDB or mmCIF writing. Direct PyTorch integration lets developers construct a supported model or reuse selected optimized modules inside custom code. The tutorial demonstrates the processor path with Boltz-2 (model_source="boltz-2"). Each protein chain requires an A3M MSA. Paired or unpaired MSAs are accepted for inputs with multiple non-identical protein chains. Templates can be supplied manually because BioIR does not run HHsearch or HMMsearch. The processor supports ligand structure prediction but not ligand-affinity prediction.
Three Layers of Acceleration
BioIR optimizes at 3 distinct layers, each targeting a different bottleneck:
- Kernel selection : Supported operations pick compatible BioIR custom, cuEquivariance, or PyTorch fallback implementations based on model configuration, GPU, data type, and tensor shape.
- Module optimization : A separate
optimize()mechanism enables CUDA Graph capture for compatible modules, cutting launch overhead. - Pipeline scaling : A Ray executor places 1 complete model replica on each visible GPU in a node and distributes independent inputs among them. CPU stages (parsing, featurization, writing) overlap with GPU folding.
Note: Ray does not split a single forward pass across GPUs. Replica mode scales worklists, not individual targets. Per the support matrix, context-parallel folding is planned but not yet available. The capacity rule is simple: engine_stage.compute x num_gpus must not exceed visible GPUs.
At the model-forward level, NVIDIA’s early benchmarking reports geometric-mean speedups over an OSS torch.compile baseline of 1.55x (OpenFold3), 1.78x (Boltz2), and 2.56x (OpenFold2 monomer) on H100. H200 numbers are similar at 1.54x, 1.75x, and 2.61x. These were measured across 17 inputs spanning 29 to 1,734 residues.
The Benchmark: 1,000 Human Dimers on 8xH100
To quantify end-to-end delivery, NVIDIA team ran a matched benchmark on 1,000 human dimer targets with combined sequence lengths below 2,800 residues. The comparison pitted BioIR-accelerated Boltz-2 against a torch-compiled open-source Boltz-2 implementation on 8xH100 80GB GPUs. Both used identical targets, staged MSAs, inference recipe (3 recycles, 200 sampling steps, 5 diffusion samples), and GPU configuration.
The results:
- BioIR completed all 1,000 targets and delivered 58.5K successfully folded residues per allocated GPU-hour .
- The public implementation delivered 20.2K residues per GPU-hour and ran out of memory on 29 targets.
- Net result: a 2.90x improvement in residue-normalized throughput.
These numbers are folding-stage measurements specific to this dataset and hardware. They exclude MSA generation, preprocessing CPU allocations, storage, data transfer, and retries. The blog explicitly warns against generalizing them to all BioIR-supported models or datasets.
Energy at One Million Targets
Extrapolating the benchmark linearly to 1 million comparable targets, BioIR is estimated to need 11 MWh versus 35 MWh for the public implementation using 8-GPU TDP equivalents. Using full-node maximum-power equivalents, the estimate is 21 MWh versus 64 MWh. These are rated-power, folding-only estimates for IT equipment, not metered measurements, and exclude data center overhead such as PUE. Still, a 23 to 43 MWh saving per million targets is a material number for proteome-scale campaigns.
Key Takeaways
- BioIR accelerates Boltz-2, OpenFold2, and OpenFold3 inference on NVIDIA GPUs while staying in plain PyTorch.
- Matched 8xH100 benchmark: 58.5K vs 20.2K folded residues per GPU-hour, a 2.90x throughput gain.
- Ray replica mode scales independent worklists; it never splits 1 forward pass across GPUs.
- Estimated energy for 1M targets drops from 35 MWh to 11 MWh at 8-GPU TDP equivalents.
- Already proven at scale: 31M candidate complexes generated for the AlphaFold Database expansion.
Check out the technical blog, GitHub repo, docs, and the BioNeMo Agent Toolkit for agentic orchestration. 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.
This text was published by MarkTechPost and written by Asif Razzaq. It is reproduced here with attribution so you can read it in full; the rights remain with the publisher. Read it at the source ↗
The headline, key points and digest above were generated by Digest AI's editorial model from the linked sources. Automated summaries can contain errors: the sources are the record. Spotted a mistake? Tell us.
More in Hardware & Compute
All →- Samsung Uses Mistral AI for Semiconductor Manufacturing · 1 src
- AI Datacenters Face Execution Risks in 75GW Behind-the-Meter Power Buildout · 1 src
- OpenAI scales Habitat storage to 70M req/s for 1B+ ChatGPT users · 1 src
- ggml-org updates llama.cpp with Flash Attention tuning for AMD gfx1201 · 1 src
- AGIBOT Unveils Blueprint to Scale Humanoid Robots from Lab to Market · 1 src
Comments
via GitHub Discussions