SUPERCOMPUTING NEWS SUPERCOMPUTING NEWS
    • MEDIA KIT
    • MOST READ
    • RSS FEED
    • ACADEMIA
    • AEROSPACE
    • APPLICATIONS
    • ASTRONOMY
    • AUTOMOTIVE
    • BIG DATA
    • BIOLOGY
    • CHEMISTRY
    • CLIENTS
    • CLOUD
    • DEFENSE
    • DEVELOPER TOOLS
    • EARTH SCIENCES
    • ECONOMICS
    • ENGINEERING
    • ENTERTAINMENT
    • GAMING
    • GOVERNMENT
    • HEALTH
    • OIL & GAS
    • INDUSTRY
    • INTERCONNECTS
    • MANUFACTURING
    • MIDDLEWARE
    • MOVIES
    • NETWORKS
    • PHYSICS
    • PROCESSORS
    • RETAIL
    • SCIENCE
    • STORAGE
    • SYSTEMS
    • VISUALIZATION
    • AcyMailing subscription form

    • ADD YOUR VIDEOS
    • MANAGE VIDEOS
    • CONVERSATION INBOX
    • SOCIAL ADVERTISER
    • SOCIAL NETWORK VIDEOS
    • SURVEYS
    • GROUPS
    • PAGES
    • MARKETPLACE LISTINGS
    • APPLICATIONS BROWSER
    • PRIVACY CONFIRM REQUEST
    • PRIVACY CREATE REQUEST
    • LEADERBOARD
    • POINTS LISTING
      • BADGES
    • TRADE SHOWS
Sign In
10,000 AI agents, 130 billion tokens and 88 hours: How OpenAI turned Navier–Stokes into a supercomputing workload
10,000 AI agents, 130 billion tokens and 88 hours: How OpenAI turned Navier–Stokes into a supercomputing workload
Qualcomm enters the supercomputing arena as AWS partnership challenges Nvidia’s AI infrastructure dominance
Qualcomm enters the supercomputing arena as AWS partnership challenges Nvidia’s AI infrastructure dominance
Millions of CPU cores meet 69 billion molecules: AI rewrites the rules of computational drug discovery
Millions of CPU cores meet 69 billion molecules: AI rewrites the rules of computational drug discovery
Jensen Huang to G20: Build the AI infrastructure, or risk being left behind
Jensen Huang to G20: Build the AI infrastructure, or risk being left behind
Supercomputing rewrites the Sun’s history and Earth’s climate
Supercomputing rewrites the Sun’s history and Earth’s climate
The algo is the supercomputer: AI rewrites the search for protein ion-binding sites
The algo is the supercomputer: AI rewrites the search for protein ion-binding sites
previous arrow
previous arrow
next arrow
next arrow
 
Shadow
10,000 AI agents, 130 billion tokens and 88 hours: How OpenAI turned Navier–Stokes into a supercomputing workload
Featured

10,000 AI agents, 130 billion tokens and 88 hours: How OpenAI turned Navier–Stokes into a supercomputing workload

CHRIS O'NEAL, PUBLISHER September 9, 2026, 8:00 am

For nearly a century, the Navier–Stokes equations have stood as one of mathematics’ most formidable unresolved challenges. Now OpenAI says an internal artificial intelligence system has produced an analytical proof showing that the three-dimensional incompressible Navier–Stokes equations can develop a singularity in finite time, a result that would resolve one of the seven Millennium Prize Problems.

But for the supercomputing community, the most important part of the announcement may not be the mathematics itself. It is how the mathematics was discovered.

OpenAI says it attacked the problem with a coordinated system of about 10,000 concurrent AI agents, generating about 2.7 million inter-agent messages and about 130 billion output tokens during the Navier–Stokes effort. The agents reached their resolution approximately 88 hours after the project began, followed by another 17 hours of Lean formalization and verification using GPT-6 Astra.

The result represents something potentially more consequential for scientific computing than a single mathematical proof: a demonstration of what happens when reasoning itself becomes a massively parallel workload.

The problem is not writing down Navier–Stokes

The Navier–Stokes equations describe fluid motion by applying Newtonian mechanics to a continuous fluid.

For an incompressible fluid with constant density, a commonly used form is

$$
\frac{\partial \mathbf{u}}{\partial t}
+
(\mathbf{u}\cdot\nabla)\mathbf{u}

-\frac{1}{\rho}\nabla p
+
\nu\nabla^2\mathbf{u}
+
\mathbf{f},
$$

with

$$
\nabla\cdot\mathbf{u}=0.
$$

Here, (\mathbf{u}) is the velocity field, (p) is pressure, (\rho) is density, (\nu) is kinematic viscosity and (\mathbf{f}) represents external forcing.

The equation is deceptively compact.

The difficulty is the nonlinear advection term,

$$
(\mathbf{u}\cdot\nabla)\mathbf{u},
$$

which allows the velocity field to interact with its own gradients. At the same time, viscosity represented by

$$
\nu\nabla^2\mathbf{u}
$$

acts to smooth the flow.

The Millennium Prize question is whether a smooth three-dimensional solution that begins from smooth initial conditions must remain smooth for all time, or whether the velocity can become unbounded in finite time.

That is the central tension: nonlinear amplification versus viscous dissipation.

OpenAI’s proposed construction involves a vortex that spirals inward and becomes increasingly elongated. As the central region contracts, the fluid velocity increases without bound while the total energy remains finite. 

That distinction is critical.

A trivial way to make velocity blow up would be to simply inject an infinite force into the system. The actual mathematical challenge is to produce the singularity from the dynamics of the Navier–Stokes equations themselves while maintaining a smooth external force.

OpenAI says its solution achieves that by arranging for the acceleration, pressure gradient, momentum transfer and viscous terms to become large while canceling one another with sufficient precision to leave a smooth forcing function even as the velocity diverges. 

The breakthrough was not one AI thinking really hard

The conventional mental model of an AI solving a difficult mathematical problem is straightforward:

Question → giant model → answer.

That is not what OpenAI describes.

Instead, the company constructed a multi-agent computational system.

The agents were powered by an internal model that OpenAI says was significantly more capable than GPT-6 Astra. They could execute code, access a cached version of the internet and communicate within groups. The groups were deliberately varied in size and approach. 

For Navier–Stokes, approximately 10,000 agents were running concurrently.

That changes the computational problem completely.

Rather than asking one model to explore a gigantic mathematical search space sequentially, OpenAI effectively created thousands of simultaneous research trajectories.

One agent could investigate a vortex construction.

Another could attack its regularity assumptions.

Another could search for an energy estimate.

Another could attempt a contradiction.

Another could investigate scaling.

Another could test whether a proposed lemma actually followed from the equations.

Another could attempt to formalize an argument.

Most of those paths could fail.

That was acceptable.

The objective was not to make every worker succeed. The objective was to make the aggregate search process succeed.

Mathematics becomes a parallel workload

This is where the OpenAI experiment starts looking surprisingly familiar to HPC engineers.

A conventional supercomputer takes a large computational problem and decomposes it into many pieces.

A computational fluid dynamics application might divide a three-dimensional domain across thousands of processors. Each process works on its local portion of the numerical domain and periodically exchanges information with neighboring processes.

The OpenAI system performed a different kind of decomposition.

It did not divide the physical fluid domain.

It divided the space of possible mathematical arguments.

Instead of exchanging pressure and velocity values, the agents exchanged mathematical information:

  • conjectures,
  • lemmas,
  • proof fragments,
  • counterexamples,
  • constructions,
  • failed approaches,
  • transformations,
  • estimates,
  • and refinements.

In that sense, OpenAI’s experiment can be viewed as a primitive form of distributed reasoning architecture.

The computational domain was not physical space.

It was proof space.

The Euler equations provided the first foothold

The system did not immediately throw all available resources at the full Navier–Stokes problem.

OpenAI also gave the agents easier related problems.

One was the regularity problem for the Euler equations, obtained by removing the viscosity term from Navier–Stokes.

The Euler equations can be written schematically as

$$
\frac{\partial\mathbf{u}}{\partial t}
+
(\mathbf{u}\cdot\nabla)\mathbf{u}

-\frac{1}{\rho}\nabla p.
$$

The missing viscous term makes the problem different, and in some respects more tractable.

Nearly 100 agents worked on the unforced Euler regularity problem for approximately 50 hours and produced what OpenAI describes as a disproof. 

That result became strategically important.

Once the Euler result appeared, OpenAI redirected resources toward Navier–Stokes and supplied the agents with the Euler resolution as an input to their subsequent reasoning. 

This is analogous to a common HPC and numerical-science strategy:

solve a reduced problem → identify structure → use that structure to attack the full problem.

The AI system was not simply generating random mathematical guesses.

It was accumulating computationally discovered structure.

Diversity was an engineering feature

OpenAI says it deliberately encouraged different agent groups to pursue diverse approaches.

That matters because thousands of identical agents would not necessarily provide thousands of times the intellectual coverage.

If 10,000 agents all follow the same reasoning path, the system can simply produce 10,000 copies of the same failure.

Diversity increases the probability that some workers will escape local minima in the mathematical search space.

The system therefore used different formulations of the Millennium problem.

Groups were given versions labeled A and B, where establishing the relevant proposition would constitute a proof, while other groups were given C and D, where the objective was to establish a disproof. 

That effectively created competing computational hypotheses.

The architecture resembles an ensemble search:

$$
H_1,H_2,H_3,\ldots,H_N
$$

where each (H_i) represents a different mathematical route.

The system does not know in advance which route will work.

It explores many.

Then the system started cross-pollinating ideas

One of the most interesting details in OpenAI’s description is the use of Codex to consolidate useful intermediate results from different groups.

This created a feedback loop.

The workflow was approximately:

parallel exploration

↓

partial mathematical discoveries

↓

consolidation

↓

new prompts informed by those discoveries

↓

another round of parallel exploration

↓

candidate proof

The importance of that architecture cannot be overstated.

Without information sharing, the 10,000 agents would largely be independent researchers.

With controlled information sharing, the system becomes an evolving computational network.

A discovery made by one group can become the starting point for thousands of other investigations.

That is conceptually similar to iterative distributed optimization, except the object being optimized is not a numerical objective function.

It is a mathematical argument.

2.7 million messages are part of the computation

During the Navier–Stokes effort, OpenAI reports that its agents exchanged approximately 2.7 million messages and generated approximately 130 billion output tokens. 

Those numbers illustrate why this should not be thought of as a conventional chatbot interaction.

The system was effectively operating a large-scale computational workload in which language became the medium for transmitting mathematical state.

A conventional HPC application might communicate something like:

$$
u_{i,j,k}^{(t)}
$$

between processes.

The AI system instead communicates things closer to:

This estimate fails under this scaling assumption.

or:

This transformation preserves incompressibility.

or:

This construction causes the energy integral to diverge.

or:

This lemma closes the remaining regularity gap.

The payload is semantic rather than numerical.

That creates a fascinating new category of distributed computing.

130 billion tokens are not 130 billion FLOPS

There is an important distinction for HPC readers.

OpenAI’s 130-billion-token figure should not be interpreted as 130 billion floating-point operations.

A token is an output unit generated by a language model.

The underlying computation includes neural-network matrix operations, memory movement, accelerator utilization, synchronization, networking, and orchestration overhead.

OpenAI has not publicly disclosed enough information in this announcement to calculate a reliable FLOP count, accelerator count, GPU-hour total or energy consumption for the Navier–Stokes run.

That means comparisons with traditional supercomputers based purely on the token figure would be speculative.

But the token count is still useful because it establishes the scale of the reasoning workload.

Approximately 130 billion generated tokens were used in exploring the mathematical problem.

The significant point is that scientific reasoning itself became compute-intensive.

The real accelerator was concurrency

The 88-hour figure is impressive, but it needs context.

OpenAI did not compress approximately 90 years of mathematical history into 88 hours by making a single AI think 90 years faster.

It changed the topology of the work.

Traditional mathematical research is heavily sequential:

$$
\text{idea}
\rightarrow
\text{proof attempt}
\rightarrow
\text{failure}
\rightarrow
\text{new idea}
\rightarrow
\text{proof attempt}.
$$

The OpenAI system can execute thousands of these loops simultaneously:

$$
\begin{array}{cccc}
A_1 & A_2 & A_3 & \cdots A_{10,000}\
\downarrow & \downarrow & \downarrow & \
P_1 & P_2 & P_3 & \cdots P_{10,000}
\end{array}
$$

where each (A_i) represents an agent and (P_i) its current mathematical search path.

The overwhelming majority can fail.

The system only needs some fraction to generate useful information.

This is exactly the kind of strategy that has driven scientific computing for decades:

replace a long serial computation with a much larger parallel computation.

The difference is that the computational units are now AI researchers rather than conventional numerical kernels.

The vortex is the mathematical payoff

The final construction is particularly interesting from a computational-fluid-dynamics perspective.

OpenAI describes the solution as a vortex that spirals inward while becoming increasingly elongated.

The central region contracts.

Its rotational speed increases.

Its geometry stretches.

Yet its total energy remains finite.

That creates the critical singular behavior:

$$
|\mathbf{u}| \rightarrow \infty
$$

as

$$
t\rightarrow T^-,
$$

where (T) is a finite time.

The remarkable aspect is that the divergence occurs while the overall energy remains finite.

This is where the nonlinear terms become decisive.

The velocity field is simultaneously producing stronger gradients and stronger nonlinear transport while viscosity attempts to dissipate those gradients.

The proposed solution requires these competing contributions to become large but cancel with extraordinary precision.

OpenAI describes the resulting flow as a central vortex whose shrinking and acceleration produce the finite-time singularity while maintaining finite energy. 

For numerical scientists, this is precisely the kind of regime in which straightforward simulation becomes extraordinarily difficult.

The relevant scales can separate dramatically, gradients become increasingly sharp, and numerical resolution requirements can become prohibitive.

The proof therefore matters not because a supercomputer can simply simulate the singularity.

It matters because the mathematical construction establishes what the equations themselves permit.

From probabilistic AI to deterministic proof checking

There is another layer that may ultimately prove even more important.

Large language models are probabilistic systems.

They can generate highly plausible mathematical statements that are wrong.

OpenAI therefore used a second stage: formal verification in Lean.

The agents produced an analytical proof.

That proof was then formalized and verified using Lean, with GPT-6 Astra completing the formalization and verification in approximately 17 additional hours.

The architecture can therefore be thought of as:

AI discovery

→

candidate mathematical proof

→

formalization

→

machine-checked proof

That is a powerful division of labor.

The AI is the heuristic search engine.

The formal proof system is the correctness gate.

The first stage explores an enormous space of possible arguments.

The second stage rejects arguments that do not satisfy the formal rules.

For scientific computing, that distinction is enormously important.

This could be a new model for scientific computing

Traditional HPC has generally focused on accelerating numerical computation.

The emerging AI-HPC model may instead accelerate scientific workflows.

Consider a future research system:

AI agents

generate hypotheses.

HPC simulation

tests them.

AI agents

analyze the simulation output.

Formal mathematics

checks theoretical claims.

HPC

runs higher-resolution simulations based on the surviving hypotheses.

AI agents

repeat the cycle.

That creates a closed computational loop:

$$
\text{Hypothesis}
\rightarrow
\text{Simulation}
\rightarrow
\text{Analysis}
\rightarrow
\text{Theory}
\rightarrow
\text{Verification}
\rightarrow
\text{New Hypothesis}.
$$

The OpenAI Navier–Stokes effort represents an early example of one portion of that loop becoming massively parallel.

Supercomputers may increasingly compute ideas, not just numbers

This may ultimately be the biggest takeaway.

For decades, the performance race in HPC has been measured in FLOPS.

Scientific applications have been optimized around vectorization, parallel decomposition, memory bandwidth, interconnect latency and accelerator utilization.

AI introduces another resource:

reasoning throughput.

A future scientific supercomputer may therefore contain conventional CPU/GPU resources alongside enormous fleets of inference accelerators running thousands, or potentially millions, of autonomous scientific agents.

The computational workload would not simply be:

Calculate 10 trillion pressure values.

It could be:

Explore 100 million possible mathematical explanations for why this simulation behaves this way.

That is a fundamentally different conception of supercomputing.

The caveat: a proof announcement is not the end of mathematical review

There is an important distinction between OpenAI producing and formally checking a proof and the broader mathematical community accepting the result as the definitive resolution of a Millennium Prize Problem.

OpenAI says it is releasing an analytical proof together with a Lean formalization, but also explicitly says it does not intend to claim the $1 million Millennium Prize. 

That restraint is significant.

The result will require scrutiny by mathematicians who were not involved in the system, including examination of the assumptions, construction, formalization and relationship between the formal proof and the official Clay Mathematics Institute formulation.

OpenAI also acknowledges concurrent work by Levent Alpöge and NYU mathematician Tristan Buckmaster, although it says their work concerned the forced Euler problem and differed substantially from OpenAI’s result. 

So the appropriate description at this stage is an AI-generated proposed resolution backed by a formal Lean verification, rather than declaring that mathematical history has already closed the book.

The bigger race is now computational

The Navier–Stokes announcement may ultimately be remembered for the mathematical breakthrough, but the supercomputing industry should focus on the underlying methodology. OpenAI demonstrated a system where 10,000 autonomous AI agents simultaneously navigated a complex scientific landscape, exchanging intermediate findings, consolidating successful approaches, and producing a verifiable solution in just 88 hours. 

With 130 billion output tokens and 2.7 million inter-agent messages, this workflow represents a fundamental shift: we are moving from chatbots to distributed scientific-computing workloads. The computational unit is no longer limited to threads, processes, or GPU kernels; it now encompasses autonomous reasoning agents, while the communication fabric now transmits semantic mathematical insights rather than just floating-point arrays. 

This experiment signals a new era of high-performance computing. If AI can reliably decompose scientific challenges, iterate through competing hypotheses, and leverage formal verification, the next generation of supercomputers will do more than simulate the physical world; they will accelerate our ability to reason about it. Ultimately, the benchmark of the future may not be how many calculations a machine can perform per second, but how many scientifically meaningful ideas it can explore and synthesize before the next deadline.

Qualcomm enters the supercomputing arena as AWS partnership challenges Nvidia’s AI infrastructure dominance
Featured

Qualcomm enters the supercomputing arena as AWS partnership challenges Nvidia’s AI infrastructure dominance

Tyler O'Neal, Staff Editor September 8, 2026, 10:00 am

The artificial intelligence infrastructure market is poised to welcome a significant new silicon supplier. Qualcomm, traditionally recognized for its leadership in smartphone processors and wireless communication, is making a definitive entry into large-scale data center computing through a multi-generational partnership with Amazon Web Services (AWS). This collaboration will integrate customized AI processors with high-speed optical networking.

The significance of this development transcends typical hyperscaler agreements. Qualcomm is positioning itself as a key participant in the high-performance computing (HPC) and AI infrastructure ecosystem at a pivotal moment, as the industry actively seeks alternatives to Nvidia’s dominant accelerator platform.

Under the agreement, Qualcomm Technologies and Amazon will co-develop multiple generations of customized silicon tailored for large-scale AI infrastructure, with an initial focus on AI inference. Furthermore, the companies will collaborate on optical connectivity solutions reaching 1.6 terabits per second, while Qualcomm intends to expand its utilization of AWS infrastructure and AI services for electronic design automation (EDA) workloads.

For an HPC industry increasingly constrained not only by compute capacity but also by the challenge of moving massive volumes of data between processors, memory, and storage, this connectivity component may prove as critical as the processor itself.

“As AI demand accelerates, data center infrastructure will require advances in both computing and connectivity to deliver greater performance with more efficiency,” stated Cristiano Amon, President and CEO of Qualcomm Incorporated. “Qualcomm is pleased to work with AWS on customized silicon and connectivity solutions, leveraging our decades of leadership in advanced processing and power-efficient compute to deliver breakthrough performance and enable the next generation of AI infrastructure.”

The objective is clear: Qualcomm is transitioning away from treating the data center as an adjacent market, aiming instead to serve as a foundational element of the silicon and networking architecture that will support the next generation of AI.

A new challenger enters Nvidia’s territory

Nvidia’s extraordinary rise during the AI boom has made its accelerators the de facto standard for much of the world’s AI infrastructure.

The company’s advantage is not simply raw GPU performance. It encompasses GPUs, networking, systems, software, compilers, libraries and the CUDA programming ecosystem. That vertically integrated stack has made Nvidia extraordinarily difficult to displace in traditional AI training and large-scale accelerated computing.

Reuters recently reported that Nvidia’s share of the AI accelerator market remains above 80%, underscoring just how formidable that installed base has become. 

Qualcomm is not attempting to replicate Nvidia’s entire platform overnight.

Instead, it is entering through a different architectural door: custom silicon, inference, power efficiency and connectivity.

That distinction matters.

Training frontier AI models requires enormous floating-point compute and memory bandwidth, while inference increasingly involves deploying those models across massive fleets of servers handling billions of queries. The economics of inference are consequently dominated not only by performance, but also by power consumption, memory capacity, networking, and total cost of ownership.

Qualcomm has spent decades optimizing processors for performance per watt. Its data-center strategy seeks to transfer that expertise into large-scale infrastructure.

The company unveiled its Dragonfly data-center roadmap earlier this year, including rack-scale AI inference platforms and a connectivity portfolio supporting 800G and 1.6T networking. Qualcomm says its Dragonfly platforms are designed around high memory capacity, bandwidth, and energy efficiency, with a roadmap extending across multiple generations. 

That makes the AWS agreement more than a one-off customer win. It provides Qualcomm with a hyperscale environment in which those architectures can be developed, deployed and iterated.

The 1.6T problem is really a data-movement problem

The headline figure in the connectivity portion of the agreement is 1.6T.

In networking terms, 1.6 terabits per second represents an enormous amount of bandwidth: approximately 200 gigabytes per second of raw binary throughput before accounting for encoding, protocol, and forward-error-correction overhead.

But the important point is not simply the number.

Modern AI clusters are increasingly limited by how quickly data can move between compute elements.

A large AI system may contain thousands, or ultimately hundreds of thousands, of processors. Those processors constantly exchange model parameters, activations, gradients, synchronization data and inference workloads. As accelerator performance increases, the network connecting those accelerators has to scale with it.

Otherwise, increasingly powerful processors spend more time waiting for data.

Qualcomm’s approach is therefore aimed at the broader compute-to-connectivity ratio.

The company says its optical technology will leverage advanced SerDes and optical DSP technologies. Its Dragonfly connectivity portfolio is designed around PAM4 and coherent-lite DSP architectures and supports 800G and 1.6T applications spanning optical modules, active optical cables and active electrical cables. Qualcomm also describes deployments ranging from intra-data-center connections to inter-data-center and campus links of up to 20 kilometers.

The underlying engineering challenge is formidable.

At these speeds, electrical signaling encounters severe channel-loss and signal-integrity problems. Equalization, retiming, modulation, forward-error correction and digital signal processing become critical to maintaining acceptable bit-error rates.

PAM4, four-level pulse-amplitude modulation, allows two bits to be encoded per symbol rather than one, increasing bandwidth without simply doubling the symbol rate. The tradeoff is reduced signal margin and greater sensitivity to noise, making sophisticated DSP increasingly important.

Qualcomm’s existing Dragonfly optical technology illustrates the direction. Its CO400, for example, is a 5-nanometer coherent-lite DSP supporting dual 400G transmission using DP-16QAM for 800G optical links and reaches up to 20 kilometers. 

The new AWS collaboration extends that technology trajectory toward 1.6T and future generations.

For HPC architects, this is potentially significant because the future AI supercomputer is becoming less like a collection of isolated servers and more like a single distributed computer.

The network is the backplane.

Qualcomm’s opportunity: Attack the economics, not just the GPU

The most interesting potential impact on Nvidia may therefore come from economics rather than a direct benchmark war.

Nvidia has built an exceptionally powerful ecosystem around accelerated computing. But hyperscalers have another objective: operate enormous AI fleets as efficiently as possible.

Amazon already designs its own AI silicon, including Trainium and Inferentia, precisely because controlling the processor architecture can provide advantages in cost, supply, workload specialization and energy efficiency.

Adding Qualcomm to that ecosystem gives AWS another source of customized compute technology.

And that is important because hyperscalers increasingly do not want their infrastructure strategy to depend on a single merchant accelerator supplier.

Qualcomm’s entry could consequently accelerate a broader shift toward heterogeneous AI supercomputing, systems combining GPUs, custom ASICs, CPUs, high-bandwidth memory and specialized networking rather than relying on one processor architecture for every workload.

Nvidia would remain enormously important, particularly for training and general-purpose accelerated computing. But every successful alternative reduces the industry’s dependence on a single architecture.

That is how technological dominance is normally challenged: not necessarily by one competitor replacing the incumbent, but by the ecosystem acquiring credible alternatives.

The semiconductor shortage changes the equation

There is another reason this partnership arrives at an important moment: advanced semiconductor manufacturing capacity is scarce.

The AI boom has created extraordinary demand for leading-edge process technology. TrendForce reported that TSMC’s 5/4-nanometer and more advanced capacity was expected to remain fully utilized through the end of 2026, with AI processors from Nvidia, AMD and increasingly hyperscaler-designed chips driving demand. 

The shortage is not confined to wafers.

AI systems require advanced packaging, high-bandwidth memory, networking components, optical devices, substrates and other specialized components. Broadcom warned earlier this year that TSMC’s capacity was a bottleneck amid surging AI demand and noted that three-to-five-year supply agreements were becoming increasingly common as companies attempted to secure future production. 

TSMC itself expects strong multi-year AI-chip demand and is expanding aggressively, including a planned increase in its Arizona investment that would bring its total planned U.S. investment to approximately $265 billion. 

That creates an unusual strategic environment.

The AI industry is simultaneously experiencing enormous demand for compute and a shortage of the manufacturing capacity required to produce that compute.

The result is a race not merely to design the fastest chip, but to secure the ability to manufacture it.

From partnership to supply-chain strategy

This is where the Qualcomm-Amazon agreement becomes particularly interesting.

The transaction includes an unusual financial component. Qualcomm issued Amazon a warrant for up to 25 million Qualcomm shares, exercizable at $161.26 per share and expiring in 2036. The shares vest in stages tied to commercial arrangements, binding purchase orders and actual purchases of Qualcomm server-chip products, technology, systems and manufacturing services, with the arrangements linked to as much as $60 billion in Amazon payments. 

That structure should not be confused with ordinary equity financing.

The economic mechanism is explicitly connected to future commercial activity: Amazon’s potential equity position grows as the two companies execute the underlying business relationship.

In other words, the partnership itself becomes part of the supply-chain strategy.

That is increasingly important in a semiconductor market where capacity cannot be conjured up when demand suddenly spikes.

The difference between traditional financing and strategic supply-chain alignment is substantial. A financing transaction supplies capital. A long-term commercial relationship can provide something arguably more valuable in a constrained market: visibility into future demand, manufacturing commitments, and product roadmaps.

For Amazon, that can mean another source of custom AI silicon.

For Qualcomm, it provides a major hyperscaler customer capable of supporting multiple generations of products.

For TSMC and the wider semiconductor ecosystem, it represents another large customer seeking advanced manufacturing capacity.

The rise of the custom-silicon supercomputer

The larger story may be the transformation of the supercomputer itself.

For decades, high-performance computing was dominated by relatively standardized CPU architectures, followed increasingly by GPUs. Today’s AI supercomputers are already much more heterogeneous.

The next generation could be even more specialized.

A hyperscale AI system could contain general-purpose CPUs for orchestration, GPUs for certain training workloads, inference ASICs for high-volume model serving, custom accelerators for specific neural-network operations, HBM for high-bandwidth memory and optical networks connecting everything together.

Qualcomm’s strategy fits naturally into that emerging architecture.

Its Dragonfly roadmap combines AI compute with memory and connectivity rather than treating the processor as an isolated component. Qualcomm says its rack-scale AI platforms are targeting inference workloads while its networking technology addresses the growing data-movement requirements between compute nodes. 

That is precisely the direction in which hyperscale supercomputing is moving.

Nvidia is still the giant in the room

None of this means Nvidia’s dominance is about to disappear.

Nvidia’s biggest advantage is that its technology is not simply a chip. It is an ecosystem that includes hardware, interconnects, software and developer tools accumulated over years of investment.

Replacing that ecosystem is considerably harder than replacing an accelerator.

Qualcomm therefore has a different battle to fight.

Rather than convincing every AI developer to abandon Nvidia, Qualcomm needs to demonstrate that hyperscale operators can obtain better economics for selected workloads through specialized processors and tightly integrated systems.

AWS is an unusually powerful partner for that experiment.

Amazon controls enormous infrastructure, operates one of the world’s largest cloud platforms and already understands the advantages and challenges of custom silicon.

If Qualcomm can demonstrate competitive inference performance while reducing power consumption or total cost of ownership, the argument becomes less about Qualcomm versus Nvidia and more about whether hyperscalers need Nvidia for every AI workload.

That is a much more consequential question.

Optical networking could become the quiet battleground

There is also a possibility that the networking component becomes one of the most strategically important elements of the announcement.

AI accelerator performance has increased so rapidly that conventional server networking architectures are under increasing pressure.

As clusters scale, network bandwidth and latency directly affect utilization. An accelerator that costs tens of thousands of dollars is economically difficult to justify if it spends significant portions of its operating time waiting for data.

Optical connectivity offers a path toward higher bandwidth and longer reach while reducing some of the electrical limitations associated with copper interconnects.

The transition from 800G toward 1.6T is therefore not merely a specification race.

It is an attempt to keep the communication fabric ahead of processor performance.

Qualcomm’s existing investments in SerDes, DSP, PAM4 and coherent-lite technology give it a technical foundation for that market. 

If the company succeeds, it could become valuable to AI infrastructure even in systems where Qualcomm’s processors are not the primary compute engine.

That would give Qualcomm a second route into the supercomputing ecosystem.

AWS becomes the accelerator test bed

The partnership also creates an interesting feedback loop.

Qualcomm will use AWS AI infrastructure, including Amazon Bedrock, for EDA workloads with the goal of reducing chip-design cycles. 

That means AWS is simultaneously becoming Qualcomm’s customer, infrastructure provider and development environment.

The implications for chip development are potentially substantial.

Modern processor design requires enormous simulation workloads, verification runs and optimization cycles. Moving more of those workloads onto cloud-based AI infrastructure could allow Qualcomm engineers to iterate more rapidly while applying machine learning to portions of the design process.

Faster design cycles matter enormously in a market where semiconductor generations can become obsolete before manufacturing capacity is even fully available.

A more competitive AI supercomputer market

Qualcomm’s entrance should therefore be viewed less as an attempt to overthrow Nvidia immediately and more as another major piece of evidence that the AI-computing market is fragmenting.

Google has its TPUs.

Amazon has Trainium and Inferentia.

Microsoft has developed custom silicon.

Meta is pursuing custom data-center processors.

AMD continues to challenge Nvidia with its accelerator portfolio.

And now Qualcomm is bringing its own combination of power-efficient compute, custom silicon and high-speed connectivity into the hyperscale infrastructure market.

Qualcomm has also announced a multi-generation data-center CPU relationship with Meta, further establishing its ambitions beyond smartphones. 

That matters because competitive pressure does not have to eliminate Nvidia’s market share to change the industry.

If hyperscalers have more credible alternatives, they gain negotiating leverage.

If chip designers have more customers, advanced manufacturing capacity becomes more strategically distributed.

If networking suppliers can deliver higher bandwidth at lower power, accelerator utilization can increase.

And if specialized processors can handle inference more economically, the definition of an AI supercomputer begins to change.

The optimistic HPC outlook

The most encouraging aspect of Qualcomm’s market entry is the expansion of industry alternatives at a time when demand for artificial intelligence significantly outpaces current infrastructure capacity. The trajectory of supercomputing over the next decade will require a multifaceted approach, extending beyond mere processor speed to encompass enhanced compute density, expanded memory bandwidth, accelerated networking, superior power efficiency, advanced packaging, and a more resilient semiconductor supply chain. 

By leveraging its substantial semiconductor expertise, Qualcomm is positioning itself to address these challenges directly. While the company is entering a landscape dominated by Nvidia, it is simultaneously entering a market that is actively seeking diversification. The 1.6T optical initiative underscores this strategic shift; future AI supercomputers will be defined not only by accelerator core counts, but by the efficiency of data movement, the system's energy consumption, and the robustness of hardware manufacturing. 

Qualcomm’s partnership with Amazon addresses these critical pressures from a distinct architectural perspective. Ultimately, this collaboration signifies a transition toward a new phase of development: as Nvidia established the foundations of the modern AI computing stack, Qualcomm is now positioning itself to influence the next generation of infrastructure. For the field of high-performance computing, this increased competition is a positive development, promising a broader array of specialized architectures, greater focus on operational efficiency, and a renewed industry-wide imperative to synchronize data movement with computational capacity.

Millions of CPU cores meet 69 billion molecules: AI rewrites the rules of computational drug discovery
Featured

Millions of CPU cores meet 69 billion molecules: AI rewrites the rules of computational drug discovery

Tyler O'Neal, Staff Editor September 3, 2026, 8:00 am

The next frontier of high-performance computing is emerging not in traditional fields such as weather prediction, astrophysics, or nuclear simulations, but within the critical search for next-generation therapeutics. 

A recent study published in Nature Biotechnology (https://www.nature.com/articles/s41587-026-03217-x) introduces an AI-enhanced computational platform capable of navigating vast chemical libraries through a synergy of machine learning, adaptive virtual screening, and extreme-scale cloud computing. This research addresses a significant challenge in computational science: how to navigate a chemical universe containing tens of billions of potential candidates without the necessity of exhaustive computation. 

The findings suggest that the solution lies not in merely expanding supercomputing capacity, but in optimizing computational efficiency. To this end, researchers developed AdaptiveFlow, an open-source platform engineered for ultralarge virtual screening and cross-platform deployment. In a landmark demonstration, the system’s ligand-preparation workload achieved near-perfect linear scaling across more than 5.6 million Intel virtual CPUs on Amazon Web Services. 

This breakthrough fundamentally shifts the paradigm of computational drug discovery. By transforming chemical search into a massively parallel process and utilizing AI to prioritize the most promising regions of chemical space, AdaptiveFlow effectively optimizes resource allocation where it is most scientifically impactful.

When the database becomes a supercomputer problem

Modern drug discovery increasingly begins not in a laboratory but inside a computational representation of chemical space.

The theoretical universe of drug-like molecules is estimated to contain more than 10^60 possibilities. No conventional computing system can enumerate, simulate, and experimentally evaluate anything remotely approaching that number.

Even the portion of chemical space that can be purchased or synthesized on demand has exploded. The study points to libraries that have grown from billions of compounds to trillions, while one of the largest ready-to-dock collections examined in the work, the Enamine REAL Space, contains approximately 69 billion compounds.

At that scale, virtual screening becomes an HPC problem.

A brute-force strategy would attempt to dock enormous numbers of molecules against a biological target, calculate their interactions, and rank the resulting candidates. But docking calculations are computationally expensive, and multiplying them by tens of billions quickly becomes impractical.

The fundamental challenge therefore becomes one of computational triage.

Which molecules should receive expensive calculations?

Which regions of chemical space are likely to contain useful candidates?

How can a supercomputing infrastructure process millions of independent calculations without allowing scheduling, data movement, and orchestration overhead to overwhelm the scientific workload?

AdaptiveFlow approaches those questions as an integrated HPC architecture.

Six million CPUs, one computational pipeline

The most dramatic demonstration involves the platform’s AdaptiveFlow Ligand Preparation (AFLP) component.

The researchers rewrote the software in Python and designed its workload around extremely fine-grained parallelism. Rather than treating a gigantic chemical library as one monolithic job, molecules are divided into collections and computational work units that can be distributed across large numbers of processors.

The system was able to execute ligand-preparation calculations using more than 5.6 million Intel vCPUs simultaneously.

The scaling behavior was described as essentially perfectly linear.

That is an important HPC result.

Perfect or near-linear scaling means that adding computational resources continues to produce approximately proportional increases in throughput. In real-world supercomputing, achieving that behavior at relatively small scales can be difficult; maintaining it across millions of concurrent CPU resources is considerably more challenging.

AdaptiveFlow’s architecture attacks several sources of inefficiency simultaneously.

Work is broken into relatively small subjobs, allowing the scheduler to distribute computational tasks across a huge pool of resources. Approximately 1,000 ligands can be grouped into collections, while subjobs and job arrays help reduce scheduling overhead while maintaining high levels of parallelism.

The architecture supports both Slurm-based HPC environments and AWS Batch, allowing the same computational concepts to extend from conventional supercomputing clusters into elastic cloud infrastructure.

That flexibility is increasingly important as scientific workloads become too large, or too intermittent, to justify running exclusively on fixed infrastructure.

The cloud becomes a scientific supercomputer.

The AdaptiveFlow demonstration also illustrates how the definition of a supercomputer is changing.

The computational infrastructure used in the study was built around AWS services including AWS Batch, Amazon S3, CloudFormation, and containerized workloads. The platform was also designed to take advantage of spot instances, allowing large computational workloads to exploit spare cloud capacity.

During the enormous library-preparation workload, less than 0.1% of the CPU hours used were interrupted by preemption.

That resilience is critical when a scientific application is operating at millions-of-CPU scale.

At that magnitude, failures are inevitable. The question is not whether individual compute resources will disappear, but whether the application architecture can absorb those failures without bringing the entire scientific workflow to a halt.

AdaptiveFlow’s short, independently executable subjobs provide that resilience. A failed unit of work can be rerun rather than forcing the entire calculation to restart.

The approach resembles an important principle from traditional HPC: break a large scientific problem into sufficiently independent pieces that the system can continue making progress even when individual computational elements fail.

The difference is scale and elasticity.

Instead of a fixed machine with a known number of processors, the cloud can provide an enormous pool of computational resources when the workload demands it.

AI does not replace HPC; it tells HPC where to work.

The most important innovation, however, may happen before the processors begin their calculations.

AdaptiveFlow incorporates Adaptive Target-Guided Virtual Screening (ATG-VS), which uses an 18-dimensional grid of molecular properties to organize chemical space.

That organization gives machine-learning methods a map.

Rather than blindly docking every molecule, the system can identify chemical subspaces that are more likely to contain useful compounds for a particular biological target. Computational resources can then be concentrated in those regions.

This creates a fundamentally different relationship between AI and high-performance computing.

Traditional HPC often asks:

How can we execute this calculation faster?

The AdaptiveFlow approach adds another question:

Do we need to execute this calculation at all?

That distinction could prove transformative.

If machine learning can reliably identify regions of chemical space that are likely to contain valuable candidates, the supercomputer no longer needs to spend equal amounts of computational effort everywhere.

It can spend more computation where the probability of scientific payoff is highest.

The researchers report that ATG-VS can reduce screening costs by up to 1,000 times for the 69-billion-compound REAL Space compared with exhaustive searches, while retaining strong enrichment of promising candidates.

The computational strategy therefore becomes a combination of AI-guided selectivity and HPC-scale execution.

More than 1,500 ways to search

AdaptiveFlow is not tied to a single docking algorithm.

The platform integrates more than 1,500 docking protocols, including GPU-accelerated approaches and machine-learning-based methods.

That matters because molecular docking is not one universal calculation. Different algorithms make different approximations about molecular interactions, protein flexibility, and binding configurations.

By providing a common computational framework for many docking approaches, AdaptiveFlow can turn the HPC infrastructure into a large experimental platform for computational chemistry.

The architecture also accommodates modern AI-based docking technologies, including deep-learning approaches.

According to the study, deep-learning docking and GPU acceleration can potentially provide an additional 10× to 100× increase in throughput.

Combined with the reduction in the amount of chemical space that must be searched, the resulting computational pipeline is dramatically different from simply attempting to brute-force billions of calculations.

The goal is not merely to build a faster molecular-docking machine.

It is to build a system that continuously decides what should be computed next.

A three-layer computational architecture

AdaptiveFlow is organized around three principal components.

AFLP, or AdaptiveFlow Ligand Preparation, prepares enormous molecular libraries for screening.

AFVS, the AdaptiveFlow Virtual Screening engine, performs the actual screening calculations.

And AFU, AdaptiveFlow Unified Workflow, connects computational stages into complete screening pipelines.

This modular design is significant for HPC because preparation, screening, machine-learning analysis, and downstream processing have different computational characteristics.

Some stages are CPU-intensive. Others can exploit GPUs. Data-intensive stages require high-throughput storage and efficient movement of molecular information. Scheduling-intensive stages require massive numbers of short jobs to be launched and completed efficiently.

The platform therefore treats drug discovery as a workflow-scale HPC problem, rather than simply a collection of individual scientific calculations.

The underlying infrastructure can operate across CPU and GPU systems and, where individual docking programs permit, ARM-compatible computing environments.

That portability could become increasingly important as heterogeneous computing becomes the norm across both cloud and traditional supercomputing centers.

Turning chemical space into a parallel data structure

One of the deeper implications of the work is that chemical space itself can be treated as a computational data structure.

Instead of viewing 69 billion molecules as 69 billion independent records, AdaptiveFlow organizes the library according to molecular properties.

The 18-dimensional representation provides a mechanism for partitioning the search space.

From an HPC perspective, this creates a hierarchy: chemical space → molecular subspaces → compound collections → computational subjobs → CPU/GPU resources.

Each level can be optimized independently.

The scientific problem is therefore transformed into a scheduling and resource-allocation problem that modern distributed computing infrastructure is exceptionally good at solving.

The result is an unusual convergence of disciplines: computational chemistry supplies the scientific models, machine learning supplies the intelligence for prioritization, and HPC supplies the massive parallel execution engine.

The proof is not only computational.

The researchers did not stop at demonstrating computational scalability.

AdaptiveFlow was used to identify inhibitors against biological targets including FSP1 and PARP1, with experimental work providing evidence that some computationally identified compounds bind their intended targets.

For PARP1, the researchers conducted a primary screen of 100 million molecules and synthesized 160 candidates for experimental verification. Protein NMR and X-ray crystallography were used to validate direct binding.

The study also reports cellular experiments involving BRCA1-deficient triple-negative breast cancer cells and describes computationally identified PARP1/PARP2 inhibitors with selective activity.

For FSP1, the computational search produced nanomolar inhibitors, with co-crystal structures helping researchers understand their binding modes.

These results are important because they demonstrate the purpose of the HPC infrastructure.

The objective is not to produce impressive processor counts.

It is to turn processor cycles into scientific discoveries.

The new supercomputing equation

For decades, high-performance computing has largely been about increasing the number and performance of processors available to scientists.

More cores.

More memory.

Faster interconnects.

More GPUs.

More efficient algorithms.

AdaptiveFlow points toward another dimension of performance: Compute less, but compute the right things.

That could become one of the defining characteristics of AI-enhanced scientific computing.

A system capable of processing billions of candidates does not necessarily need to evaluate billions of candidates with the same expensive algorithm. Machine learning can serve as an intelligent filter, reducing the computational search space before the most expensive calculations begin.

Then HPC can apply enormous parallelism to the candidates that remain.

This is particularly powerful for problems where the search space is vast but useful solutions are comparatively rare.

Drug discovery is one example. Similar approaches could potentially be relevant to materials science, catalyst discovery, protein engineering, battery chemistry, and other scientific domains in which researchers confront enormous combinatorial spaces.

From brute force to intelligent force

The achievement of 5.6 million concurrent vCPUs is impressive on its own. But the more consequential achievement may be the combination of that scale with algorithmic intelligence.

The researchers have effectively connected two kinds of acceleration.

Hardware acceleration: distribute computational work across millions of CPU resources and, where appropriate, GPUs.

Algorithmic acceleration: use molecular-property organization, machine learning, and adaptive screening to avoid wasting computation on low-value regions of the search space.

The two approaches multiply one another.

If HPC makes an individual calculation faster, AI can make the overall search smaller.

If AI identifies a promising region, HPC can examine that region at extraordinary scale.

And if the system can dynamically move between those two processes, the boundary between algorithm design and supercomputer architecture begins to disappear.

Citizen-scale possibilities from supercomputer-scale discovery

The ultimate promise of this approach extends beyond the processors themselves.

The study describes an open-source platform that can make ultralarge screening workflows more accessible to researchers using HPC clusters and cloud resources.

That matters because the world’s largest computational discoveries increasingly depend on software ecosystems, not just machines.

A scientific platform that can scale from conventional clusters to millions of cloud CPUs potentially gives researchers a common framework for experiments that once required highly specialized infrastructure.

The result is a new model of scientific computing in which the supercomputer becomes not merely a place where calculations happen, but part of an adaptive discovery loop.

AI proposes where to look.

HPC searches at extraordinary scale.

Experimental science determines what matters.

The results feed back into the computational models.

And the cycle begins again.

The next frontier is not bigger; it is smarter.

The 69-billion-molecule problem illustrates something fundamental about the future of supercomputing.

There will always be scientific problems for which simply adding more processors is not enough.

When the search space grows faster than available computing resources, efficiency becomes as important as raw performance.

AdaptiveFlow demonstrates one possible answer: combine extreme parallelism with artificial intelligence so that computing resources are directed toward the most scientifically promising regions of an enormous search space.

The researchers’ 5.6-million-vCPU demonstration provides the hardware-scale proof point. The 69-billion-compound library provides the computational challenge. The AI-guided reduction in search costs provides the algorithmic breakthrough.

Together, they suggest a future in which the world’s largest scientific computers do not simply calculate faster.

They calculate more intelligently.

For drug discovery, that could mean navigating chemical space that was once computationally unreachable. For high-performance computing more broadly, it offers a compelling vision of what comes next: machines that combine massive parallelism with machine intelligence to transform impossible searches into tractable scientific experiments.

The age of brute-force scientific computing is not necessarily ending.

But it may be evolving into something far more powerful: intelligent force at supercomputer scale.

POPULAR RIGHT NOW
  • AI infrastructure financing fears shake semiconductor sector
    AI infrastructure financing fears shake semiconductor sector
  • AWS supercomputing investment reaches historic scale as Amazon’s AI strategy powers record financial results
    AWS supercomputing investment reaches historic scale as Amazon’s AI strategy powers record financial results
  • Catching the wave of the future: Supercomputers unlock the hidden dynamics of Venus
    Catching the wave of the future: Supercomputers unlock the hidden dynamics of Venus
  • NCAR supercomputers run planet scale climate experiments impossible in the real world
    NCAR supercomputers run planet scale climate experiments impossible in the real world
  • AI hunts the cosmos: Machine learning helps astronomers discover the first ‘Wandering’ supermassive black hole caught destroying a star
    AI hunts the cosmos: Machine learning helps astronomers discover the first ‘Wandering’ supermassive black hole caught destroying a star
  • Supercomputing for the masses: Meta's vision of a personal superintelligence for everyone
    Supercomputing for the masses: Meta's vision of a personal superintelligence for everyone
  • NVIDIA helps turn AI compute into a new asset class as Wall Street mobilizes $500 billion
    NVIDIA helps turn AI compute into a new asset class as Wall Street mobilizes $500 billion
  • The stars that remember: Supercomputing reveals the hidden histories of massive binary systems
    The star γ Columbae is part of the Southern constellation of Columba, the Dove.
    The star γ Columbae is part of the Southern constellation of Columba, the Dove.
  • Supercomputers scan 165 years of weather data to find the ‘Snow-Eater’ heat waves behind Western US snowmelt
    Supercomputers scan 165 years of weather data to find the ‘Snow-Eater’ heat waves behind Western US snowmelt
  • Computational radiative transfer reveals a gas-ensheathed black hole at cosmic dawn
    Computational radiative transfer reveals a gas-ensheathed black hole at cosmic dawn
THIS YEAR'S MOST READ
  • Beamforming the future: BeammWave's 6G push signals the rise of orbital-terrestrial wireless networks
    Joakim Axmon
    Joakim Axmon
  • Wall Street wants to trade supercomputing power like oil
    Wall Street wants to trade supercomputing power like oil
  • Cosmic ambition at scale: UK’s supercomputer unlocks a 2.5 petabytes universe
    Cosmic ambition at scale: UK’s supercomputer unlocks a 2.5 petabytes universe
  • Hidden order, revealed at scale: Supercomputing, electron ptychography uncover the inner workings of relaxor ferroelectrics
    Hidden order, revealed at scale: Supercomputing, electron ptychography uncover the inner workings of relaxor ferroelectrics
  • Memory has become the new compute: Why Micron, SK Hynix crossing $1 trillion matters to supercomputing
    Memory has become the new compute: Why Micron, SK Hynix crossing $1 trillion matters to supercomputing
  • Huawei’s Tau Scaling ambition tests the limits of post-Moore semiconductor reality
    He Tingbo from HUAWEI delivered a keynote speech titled "New Semiconductor Path in Practice"
    He Tingbo from HUAWEI delivered a keynote speech titled "New Semiconductor Path in Practice"
  • AI breaks conservation barriers: Australia’s Wildlife Observatory leverages supercomputing to protect biodiversity
    AI breaks conservation barriers: Australia’s Wildlife Observatory leverages supercomputing to protect biodiversity
  • Intel's Q1 results signal supercomputing surge driving Xeon momentum
    Intel's Q1 results signal supercomputing surge driving Xeon momentum
  • When stars fall apart: Supercomputing reveals the hidden physics of black holes
    When stars fall apart: Supercomputing reveals the hidden physics of black holes
  • MIT develops computational framework to probe dark matter via gravitational waves
    MIT develops computational framework to probe dark matter via gravitational waves
MOST READ OF ALL-TIME
  • Largest Computational Biology Simulation Mimics The Ribosome
    Details
    112290
    The amino acid (green) slithers into the chemical reaction center, moving through an evolutionarily ancient corridor of the ribosome (purple). The amino acid is delivered to the reaction core by the transfer RNA molecule (yellow).
    The amino acid (green) slithers into the chemical reaction center, moving through an evolutionarily ancient corridor of the ribosome (purple). The amino acid is delivered to the reaction core by the transfer RNA molecule (yellow).
  • Silicon 'neurons' may add a new dimension to chips
    Details
    81385
    Silicon 'neurons' may add a new dimension to chips
  • Linux Networx Accelerators Expected to Drive up to 4x Price/Performance
    Details
    75741
  • Complex Concepts That Really Add Up
    Details
    73963
    Complex Concepts That Really Add Up
  • Blue Sky Studios Donates Animation SuperComputer to Wesleyan
    Details
    68336
    Each rack holds 52 Angstrom Microsystem-brand “blades,” with a memory footprint of 12 or 24 gigabytes each. (Photos by Olivia Bartlett Drake)
    Each rack holds 52 Angstrom Microsystem-brand “blades,” with a memory footprint of 12 or 24 gigabytes each. (Photos by Olivia Bartlett Drake)
  • Humanities, HPC connect at NERSC
    Details
    58154
  • TeraGrid ’09 'Call for Participation'
    Details
    55162
  • Turbulence responsible for black holes' balancing act
    Details
    52533
  • Cray Wins $52 Million SuperComputer Contract
    Details
    50317
  • SDSC Researchers Accurately Predict Protein Docking
    Details
    46312
  • FRONTPAGE
  • LATEST
  • POPULAR
  • REGISTER
  • SOCIAL
  • VIDEO
  • SUBSCRIPTION
  • RSS
  • GUIDELINES
  • PRIVACY
  • TOS
  • ABOUT
  • +1 (816) 799-4488
  • editorial@supercomputingonline.com
© 2001 - 2026 SuperComputingOnline.com, LLC. All rights reserved. This material may not be published, broadcast, rewritten or redistributed without permission.
Sign In
  • FRONT PAGE
  • LATEST
    • MEDIA KIT
    • MOST READ
    • RSS FEED
    • ACADEMIA
    • AEROSPACE
    • APPLICATIONS
    • ASTRONOMY
    • AUTOMOTIVE
    • BIG DATA
    • BIOLOGY
    • CHEMISTRY
    • CLIENTS
    • CLOUD
    • DEFENSE
    • DEVELOPER TOOLS
    • EARTH SCIENCES
    • ECONOMICS
    • ENGINEERING
    • ENTERTAINMENT
    • HEALTH
    • INDUSTRY
    • INTERCONNECTS
    • GAMING
    • GOVERNMENT
    • MANUFACTURING
    • MIDDLEWARE
    • MOVIES
    • NETWORKS
    • OIL & GAS
    • PHYSICS
    • PROCESSORS
    • RETAIL
    • SCIENCE
    • STORAGE
    • SYSTEMS
    • VISUALIZATION
  • VIDEOS
    • ADD YOUR VIDEOS
    • MANAGE VIDEOS
  • COMMUNITY
    • TRADE SHOWS
    • SOCIAL NETWORK VIDEOS
    • SURVEYS
    • APPLICATIONS BROWSER
    • CONVERSATION INBOX
    • SOCIAL ADVERTISER
    • GROUPS
    • MARKETPLACE LISTINGS
    • PAGES
    • LEADERBOARD
    • POINTS LISTING
      • BADGES
    • PRIVACY CONFIRM REQUEST
    • PRIVACY CREATE REQUEST

Hey there! We noticed you’re using an ad blocker.