Wednesday, September 16, 2026
No Result
View All Result
Future News 24
Advertisement
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized
No Result
View All Result
Future News 24
No Result
View All Result
Home AI Platforms & Apps

Accelerating Finish-to-Finish Co-Folding Efficiency with NVIDIA BioNeMo Agent Toolkit

Future News 24 by Future News 24
July 10, 2026
in AI Platforms & Apps
0 0
0
Accelerating Finish-to-Finish Co-Folding Efficiency with NVIDIA BioNeMo Agent Toolkit
0
SHARES
0
VIEWS
Share on FacebookShare on Twitter


Biomolecular construction prediction and co-folding with fashions like OpenFold3 at the moment are mainstream, large-scale workloads powering drug discovery and protein design. More and more, they’re pushed end-to-end by AI brokers. For an agent to run that pipeline effectively, each step must be quick and scalable: A number of Sequence Alignment (MSA) era, co-folding inference, serving, and multi-GPU scale-out. A bottleneck anyplace limits total throughput. 

Velocity and memory-efficiency are important for key drug discovery workflows similar to digital screening and prediction of enormous molecular assemblies. In digital screening, hundreds of thousands to billions of compounds are screened in opposition to one or a couple of protein targets. Whereas co-folding fashions usually give the most effective predicted constructions, they are often costly to run, making them impractical for digital screening functions. That’s the place NVIDIA acceleration turns into key, making potential the deployment of OpenFold3 and associated strategies on the scale of enormous compound libraries.

Velocity can be necessary for predicting giant molecular assemblies involving a number of proteins and hundreds of amino acid residues, as co-folding mannequin runtime scales cubically with the variety of residues. A fair greater problem, nonetheless, is reminiscence use, as single GPU reminiscence may be restricted, putting a tough ceiling on the scale of complexes that may be predicted in a single shot. Strategies to scale back reminiscence necessities, and that distribute prediction duties throughout a number of GPUs, would allow qualitatively new functions which might be merely unfeasible at present.

NVIDIA has constructed instruments to speed up and enhance the effectivity of every step of the construction prediction and co-folding workflow. NVIDIA BioNeMo Agent Toolkit offers brokers seamless entry to the instruments they should speed up biology and chemistry workflows. On this put up, we break down the accelerations for every stage on NVIDIA B300 and H100 GPUs, then present how these phases may be executed by an agent (see Determine 1, beneath).

A flowchart showing the BioNeMo Agent Toolkit pipeline for protein structure prediction, from input sequences through GPU MSA Generation, Co-Folding with OpenFold 3, and Multi-GPU Scale-out to a predicted structure.A flowchart showing the BioNeMo Agent Toolkit pipeline for protein structure prediction, from input sequences through GPU MSA Generation, Co-Folding with OpenFold 3, and Multi-GPU Scale-out to a predicted structure.
Determine 1. The NVIDIA-accelerated structure-prediction workflow: GPU MSA, cuEquivariance, optimized inference, and Fold-CP, all orchestrated by the BioNeMo Agent Toolkit

Take away the MSA bottleneck with GPU MSA

For co-folding fashions, constructing the MSA has historically been a CPU-bound step that may dominate wall-clock time. MMseqs2-GPU strikes homology search onto NVIDIA GPUs, lowering this bottleneck whereas scaling with sequence size on each NVIDIA Hopper and NVIDIA Blackwell architectures.

The most recent GPU accelerated model provides Hopper and Blackwell particular optimizations, together with environment friendly assist for larger-than-GPU-memory database search on NVIDIA Grace programs and extra speedups from improved Blackwell DPX directions obtainable from CUDA 13.2. These GPU contributions have been upstreamed again into the principle MMseqs2 repository so the entire group can profit from the accelerations.

The MSA Search NIM makes use of MMseqs2-GPU, whose Nature Strategies paper reviews as much as 177× quicker alignment than CPU JackHMMER on a single L40S. In our benchmarking, the stage scales easily previous 10k tokens on H100 and B300 GPUs (see Determine 2, beneath). The MSA Search NIM may be referred to as instantly, self-hosted or wrapped as a software in an agentic workflow. 

Notice: We present learn how to name the NIM API endpoint hosted on construct.nvidia.com, however for large-scale workloads, the self-hosted NIM is the popular beneficial endpoint. construct.nvidia.com endpoints aren’t constructed to deal with giant quantity requests and can time-out.
# Add the MSA Search NIM talent to your agent (browse all: add –list)
npx abilities add NVIDIA-BioNeMo/bionemo-agent-toolkit –skill msa-search-nim –agent claude-code
# Use hosted API on construct.nvidia.com (nothing to obtain)
# It’s also possible to use the talent to obtain the NIM container and supply self-hosted API endpoint. We do not cowl that on this tutorial.
export NVIDIA_API_KEY=

# Simply immediate the agent:
# It’s a must to obtain a pattern goal.fasta file. You may immediate the agent to obtain it for you or level to an already present file.
“Construct an MSA for the sequence in goal.fasta with the MSA Search NIM.”

A line chart comparing OpenFold3 MSA stage latency by sequence length between H100 (463s) and B300 (429s) GPUs at ~10k tokens, showing near-linear scaling with B300 slightly faster.A line chart comparing OpenFold3 MSA stage latency by sequence length between H100 (463s) and B300 (429s) GPUs at ~10k tokens, showing near-linear scaling with B300 slightly faster.
Determine 2. MSA-stage latency scales close to linearly to 10k+ tokens on H100 and B300 (429 s vs 463 s at ~10k tokens)

Fold at SOTA velocity with cuEquivariance and the OpenFold3 NIM

cuEquivariance is a CUDA-X library of geometric studying primitives for atomistic modeling and it gives accelerated variations of the Triangle Consideration, Triangle Multiplication and Consideration Pair Bias kernels that dominate co-folding. On B300 it cuts latency as much as ~3× (see Desk 1, beneath). 

Sequence lengthPyTorch (OSS)cuEquivarianceSpeedup1,024 (H100)79.4 s41.6 s1.9×1,024 (B300)49.1 s27.3 s1.8×1,536 (B300)149.0 s56.2 s2.7×2,048 (B300)300.1 s97.6 s3.1×
Desk 1. Comparability of OpenFold3 forward-pass latency with and with out cuEquivariance

cuEquivariance kernels are built-in instantly into the OSS fashions like OpenFold3 (offered as an non-compulsory dependency), OpenFold2, RosettaFold3, Protenix and Boltz.

As a result of the accelerations are upstreamed into these OSS fashions, a researcher will get the speedups mechanically just by working the mannequin they already use on an NVIDIA GPU. CuEquivariance kernels additionally extends most sequence size to ~5.9k tokens whereas PyTorch runs out of reminiscence past ~1.5k–2.5k tokens.

A line chart comparing OpenFold3 inference latency between cuEquivariance and PyTorch OSS on H100 and B300 GPUs, showing cuEquivariance extends maximum sequence length to ~5.9k tokens while PyTorch runs out of memory beyond ~1.5k–2.5k tokens.A line chart comparing OpenFold3 inference latency between cuEquivariance and PyTorch OSS on H100 and B300 GPUs, showing cuEquivariance extends maximum sequence length to ~5.9k tokens while PyTorch runs out of memory beyond ~1.5k–2.5k tokens.
Determine 3. cuEquivariance lowers latency and extends most sequence size over PyTorch on H100 and B300

On high of cuEquivariance, the OpenFold3 NIM applies additional inference optimizations that compound the achieve (see Determine 4, beneath), attaining sequence lengths of as much as ~6,400 on a single B300. These extra accelerations are delivered by the NIM; for SOTA out of the field, builders can name the NIM endpoint instantly or compose it into an agentic workflow.

Side-by-side line charts showing OpenFold3 forward-pass inference latency, with the fully optimized NIM 3.25x faster than OSS on H100 and 1.44x faster on B300, supporting sequences up to 6,400 tokens.Side-by-side line charts showing OpenFold3 forward-pass inference latency, with the fully optimized NIM 3.25x faster than OSS on H100 and 1.44x faster on B300, supporting sequences up to 6,400 tokens.
Determine 4. The totally optimized OpenFold3 NIM on H100 and B300, attaining over 3x and 4x quicker, respectively, folding as much as 6,400 tokens on a single B300 
# Add the OpenFold3 NIM talent to your agent
npx abilities add NVIDIA-BioNeMo/bionemo-agent-toolkit –skill openfold3-nim –agent claude-code

# Hosted API on construct.nvidia.com
# It’s also possible to use the talent to obtain the NIM container and supply self-hosted API endpoint. We do not cowl that on this tutorial.
export NVIDIA_API_KEY=

# Immediate the agent:
# It’s a must to obtain a pattern goal.fasta file. You may immediate the agent to obtain it for you or level to an already present file.
“Fold goal.fasta with OpenFold3 utilizing the MSA from the earlier step; return the ranked constructions with confidence scores.”

Scale past one GPU with Fold-CP

Single-GPU reminiscence has traditionally capped co-folding fashions at a couple of thousand residues. On NVIDIA B300 (Blackwell Extremely), the bigger HBM and Blackwell-generation effectivity mixed with the cuEquivariance and superior inference optimizations above push that ceiling considerably larger with no mannequin adjustments. 

In lots of instances, being single-device certain is probably not ample. Fold-CP introduces a brand new parallelization method such that per-device reminiscence requirement scales as O(N²/P) the place N is token depend and P is the variety of GPUs, reaching 32,000 tokens on 64 B300 with the Boltz-2 mannequin—a couple of 12× leap over the single-GPU restrict. 

To strive Fold-CP, merely level your agent to the Boltz-CP codebase and ask it to run multi-GPU inference. 

# Context-parallel inference throughout 4 GPUs with Fold-CP (boltz-cp)
git clone https://github.com/NVIDIA-Digital-Bio/boltz-cp && cd boltz-cp
# Set up dependencies after which run the command beneath
torchrun –nnodes 1 –nproc_per_node 4
src/boltz/distributed/important.py predict /path/to/preprocessed_data
–out_dir ./predictions
–size_dp 1 –size_cp 4
–recycling_steps 3 –sampling_steps 200 –diffusion_samples 5

Accelerating the end-to-end co-folding pipeline

Construction prediction efficiency is now an end-to-end programs downside. For OpenFold3, the sensible workflow spans MSA era, co-folding inference, deployment, and the reminiscence limits that decide how giant a organic meeting may be modeled.

NVIDIA accelerates every layer of that workflow: MSA Search NIM speeds homology search by 177x, cuEquivariance and OpenFold3 NIM decrease inference latency by as much as 4x on Blackwell GPUs, and Fold-CP reveals how context parallelism can lengthen co-folding past a single GPU to 32,000-token complexes on 64 NVIDIA B300 GPUs. 

Collectively, these instruments make construction prediction quicker, extra scalable, and simpler to compose into agentic discovery workflows, serving to researchers transfer from mannequin predictions to bigger, extra helpful organic programs.

What these accelerations unlock

These enhancements open up lessons of structural biology issues that have been beforehand out of attain. In digital screening, quicker co-folding inference implies that structure-based strategies, which have traditionally been reserved for the ultimate phases of a drug discovery marketing campaign, can now be utilized at far earlier phases and at a lot bigger library scales, enhancing the standard and variety of hits that advance by the pipeline.

For giant biomolecular assemblies, the mix of prolonged single-GPU capability on B300 and the context-parallel Fold-CP framework shifts what’s modelable: complexes on the scale of the ribosome, the spliceosome, or giant signaling assemblies have been structurally intractable for co-folding fashions, and these accelerations start to alter that. To make this concrete, folding a posh of ~10,000 residues, roughly the dimensions of the bacterial ribosome, would have been prohibitively costly or just out of attain on a single GPU; on B300 with Fold-CP, such predictions change into tractable throughout a multi-GPU node.

These are qualitative shifts within the questions that structural biology can ask computationally, not merely enhancements in throughput. Making these instruments accessible by open-source integrations and agentic APIs will speed up the tempo at which computational predictions translate into organic perception and, finally, into new medicines.

Getting began 

Strive the accelerated OpenFold3 workflow with NVIDIA BioNeMo Agent Toolkit, beginning with these instruments:

Acknowledgments 

We’d prefer to thank our broader NVIDIA staff for growing the benchmarks and instruments: Franco Pellegrini, Lalit Vaidya, Duc Tran, Tien Pham, Maximilian Stadler, Alejandro Chacon, Quan Vu, Simon Chu, Brian Roland, Dejun Lin, Joseph Chang, Hoa La, Jonathan Mitchell, Vishanth Iyer, Timur Rvachov, Christian Dallago, Christian Hundt. We’d additionally prefer to thank the broader OpenFold and OMSF groups for our collaboration and their contributions.



Source link

Tags: AcceleratingAgentBioNeMoCoFoldingEndtoEndNVIDIAperformanceToolkit
Previous Post

The Obtain: Claude’s interior workings and OpenAI’s “tremendous app”

Next Post

Examine reveals the power value of Hannibal’s Alpine crossing – Physics World

Next Post
Examine reveals the power value of Hannibal’s Alpine crossing – Physics World

Examine reveals the power value of Hannibal's Alpine crossing – Physics World

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Fetching latest news…
FUTURENEWS24
Live Feed
All
AI
Dev
Industry
Frontier
Updates in 60s
FN24 AI & Tech
View All →
Future News 24

The world's leading source for AI research, emerging technology, and the people building the future. Independent, rigorous, and always ahead.

CATEGORIES

  • AI Platforms & Apps
  • AI Research & Breakthroughs
  • BioTechnology
  • Data Science & MLOps
  • Decentralized Technology
  • Developer AI & Open-Source Ecosystem
  • Emerging Technologies & Innovations
  • Ethics & Policy
  • Industry & Business
  • Quantum Computing
  • Uncategorized

LATEST

  • [2602.13312] PeroMAS: A Multi-agent System of Perovskite Materials Discovery
  • GPT-6 Astra overview: code overview good points, privateness, and value
  • GPT-6 Astra: Options, Benchmarks, Pricing, and What’s New
  • About Us
  • Advertise with Us
  • Disclaimer
  • Privacy Policy
  • DMCA 
  • Cookie Policy
  • Terms and Conditions
  • Contact us

© 2026 Future News 24. All rights reserved.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized

© 2026 Future News 24. All rights reserved.

Website security powered by MilesWeb