Home > Tech News > Amazon Web Services Unveils Public Access to Next-Generation Quantum Computing Instances

Amazon Web Services Unveils Public Access to Next-Generation Quantum Computing Instances

**AWS Democratizes Quantum Frontier: Next-Gen Computing Instances Now Publicly Accessible**

**January 17, 2026** – Amazon Web Services (AWS) today announced a monumental leap in the democratization of quantum computing, making its most advanced, next-generation quantum computing instances publicly available through AWS Braket. This landmark development, unveiled at a special press briefing this morning, ushers in an era where researchers, developers, and enterprises can directly experiment with cutting-edge quantum hardware previously confined to select research labs or private beta programs.

**Latest Developments and Breaking News: The Quasar and Forte+ Era Begins**

Effective immediately, developers can provision and run quantum circuits on two distinct, state-of-the-art quantum processing units (QPUs): the **Amazon Braket Quasar** and the **IonQ Forte+**.

The **Amazon Braket Quasar** is AWS’s latest internally developed superconducting transmon processor, boasting 128 physical qubits. It features significantly improved coherence times, now routinely exceeding 50 microseconds, and average two-qubit gate fidelities pushing past 99.92%. This advancement is a direct result of AWS’s multi-year investment in quantum hardware engineering and advanced cryogenic infrastructure.

Simultaneously, AWS has expanded its partnership with IonQ, integrating their brand-new **IonQ Forte+** system. This trapped-ion processor offers 64 fully connected qubits, renowned for their extremely high fidelity and reconfigurability, achieving average two-qubit gate fidelities of 99.96% and a remarkable system uptime.

“This isn’t just an incremental update; it’s a paradigm shift,” stated Dr. Alistair Finch, VP of Quantum Technologies at AWS, at the launch event. “By making the Quasar and Forte+ openly accessible, we are dramatically lowering the barrier to entry for serious quantum exploration. We anticipate an explosion of innovation as developers leverage these powerful new tools to tackle problems previously deemed intractable.”

AWS has also upgraded the Braket SDK to support new control primitives and error mitigation techniques specific to these next-generation architectures, alongside enhanced simulation capabilities to preview complex circuits.


import braket
from braket.aws import AwsDevice
from braket.circuits import Circuit, Gate, ResultType

# Define the new Amazon Braket Quasar device
quasar_device = AwsDevice("arn:aws:braket:us-east-1::device/qpu/amazon/Quasar")

# Create a simple entangled Bell state circuit
bell_circuit = Circuit().h(0).cnot(0, 1)

print("Submitting Bell state circuit to Amazon Braket Quasar...")
# Run the circuit
task = quasar_device.run(bell_circuit, shots=100)
result = task.result()

# Get measurement counts
counts = result.measurement_counts
print(f"Measurement Counts: {counts}")

# Example of using the IonQ Forte+ device
forte_device = AwsDevice("arn:aws:braket:us-east-1::device/qpu/ionq/FortePlus")

# Create a simple Grover-like iteration
grover_circuit = Circuit().h(0).h(1).cz(0,1).h(0).h(1)

print("\nSubmitting Grover-like circuit to IonQ Forte+...")
task_forte = forte_device.run(grover_circuit, shots=100)
result_forte = task_forte.result()

print(f"IonQ Forte+ Measurement Counts: {result_forte.measurement_counts}")

**Key Details and Background Information: A Quantum Leap for Developers**

For years, AWS Braket has provided a fully managed quantum computing service, offering access to various quantum hardware providers and simulators. This enabled researchers to experiment with different qubit technologies—superconducting, trapped ion, and neutral atom—without managing infrastructure. The introduction of the Quasar and Forte+ instances signifies a maturity point, moving beyond early-stage prototypes to systems with performance metrics that can sustain more complex algorithms and longer computation times.

These “next-generation” instances distinguish themselves through higher qubit counts, dramatically improved fidelity (lower error rates per gate operation), and extended coherence times. For developers, this translates into the ability to execute deeper circuits and potentially explore more ambitious use cases without being immediately limited by noise or short qubit lifetimes. While still not fully fault-tolerant, these machines incorporate advanced error mitigation techniques at the hardware level, allowing for more reliable intermediate results.

**Impact on the Tech Industry Today: Fueling the Quantum Renaissance**

Today’s announcement has far-reaching implications across the tech industry. It significantly accelerates the “quantum renaissance” by:

* **Democratizing Access:** Lowering the barrier for startups, smaller research institutions, and individual developers to engage with cutting-edge quantum hardware. This broadens the talent pool and potential for serendipitous discovery. * **Accelerating Algorithm Development:** With more reliable and powerful hardware, researchers can now rigorously test and optimize quantum algorithms for real-world applications, moving beyond theoretical simulations. * **Driving Enterprise Adoption:** Enterprises in sectors like finance, pharmaceuticals, logistics, and materials science can now pilot more complex quantum solutions, laying the groundwork for future competitive advantage. * **Fostering an Ecosystem:** AWS’s move will likely spur further investment in quantum software, tools, and educational resources, creating a more robust and self-sustaining quantum ecosystem.

**Expert Opinions and Current Market Analysis: A Strategic Play in the Quantum Race**

“This is a game-changer for the quantum landscape,” commented Dr. Lena Sharma, a senior analyst at QuantumTech Insights. “AWS has strategically positioned itself at the forefront of accessible quantum innovation. By combining their homegrown Quasar chip with a top-tier partner like IonQ’s Forte+, they offer a compelling diverse set of hardware choices that cater to different algorithmic needs. This move puts pressure on competitors like IBM, Google, and Microsoft to accelerate their own public offerings of similar caliber.”

The global quantum computing market, though still nascent, is projected to grow exponentially, with significant investments from governments and private enterprises. This latest AWS offering is expected to inject further momentum, pushing the industry closer to achieving “quantum advantage”—where quantum computers demonstrably outperform classical supercomputers for specific, valuable tasks. While full fault-tolerance remains a future goal, the fidelity and qubit count of these new instances bring us closer to exploring “noisy intermediate-scale quantum” (NISQ) applications with real-world impact.

**Future Implications and What to Expect Next: Towards Fault Tolerance and Beyond**

The public access to next-generation quantum instances marks a pivotal step on the long road to universal, fault-tolerant quantum computing. Future developments will undoubtedly focus on:

* **Scaling Up:** Increasing qubit counts into the thousands, while maintaining or improving fidelity. * **Advanced Error Correction:** Implementing more robust quantum error correction schemes to build stable logical qubits. * **Hybrid Classical-Quantum Architectures:** Deeper integration with classical high-performance computing to optimize quantum algorithm execution. * **Specialized Quantum Applications:** The emergence of domain-specific quantum algorithms and software tailored for industries like drug discovery, financial modeling, and AI.

AWS’s commitment suggests a continuous stream of hardware upgrades and new partnerships on Braket. Developers and researchers are encouraged to explore the new capabilities, contribute to the growing quantum knowledge base, and prepare for a future where quantum computing plays an increasingly critical role in solving humanity’s grand challenges.