{"id":26744,"date":"2025-07-21T18:50:15","date_gmt":"2025-07-21T18:50:15","guid":{"rendered":"https:\/\/www.newsbeep.com\/us\/26744\/"},"modified":"2025-07-21T18:50:15","modified_gmt":"2025-07-21T18:50:15","slug":"amazon-braket-launches-new-54-qubit-superconducting-quantum-processor-from-iqm","status":"publish","type":"post","link":"https:\/\/www.newsbeep.com\/us\/26744\/","title":{"rendered":"Amazon Braket launches new 54-qubit superconducting quantum processor from IQM"},"content":{"rendered":"\n<p><a href=\"https:\/\/aws.amazon.com\/braket\/\" rel=\"nofollow noopener\" target=\"_blank\">Amazon Braket<\/a> enables customers to design and run quantum algorithms on a broad selection of quantum hardware through a unified interface. Today, we expand the hardware available on Braket with the general availability of IQM\u2019s latest quantum processing unit (QPU). The device, named Emerald, is a 54-qubit superconducting QPU providing customers higher fidelity gates and full square lattice connectivity.<\/p>\n<p>With the addition of IQM Emerald to Braket, customers can now access two IQM quantum processors: the 20-qubit Garnet and the new 54-qubit Emerald. Both devices are available through the Europe (Stockholm) Region, providing customers with greater choice in selecting the appropriate quantum hardware for their specific research needs and algorithm requirements.<\/p>\n<p>        <img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-4900\" class=\" wp-image-4900\" src=\"https:\/\/www.newsbeep.com\/us\/wp-content\/uploads\/2025\/07\/1753123815_335_image001.png\" alt=\"Figure 1: IQM Emerald processor\" width=\"458\" height=\"437\"\/> <\/p>\n<p id=\"caption-attachment-4900\" class=\"wp-caption-text\">Figure 1: IQM Emerald processor<\/p>\n<p>In this early phase of quantum computing, experimentation across a variety of available devices is crucial for developing quantum algorithms to eventually address complex problems across domains like finance, energy, pharmaceuticals, and logistics. Customers worldwide can now run experiments on IQM\u2019s most advanced quantum hardware, using on-demand access for designing and executing programs and priority access via Hybrid Jobs for running variational quantum algorithms, all with simple pay-as-you-go pricing. For workloads with latency or time-sensitive requirements, customers can reserve dedicated capacity on the Emerald QPU on a per-hour basis through Braket Direct.<\/p>\n<p>       Advanced architecture for quantum research <\/p>\n<p>Emerald features IQM\u2019s Crystal 54 architecture, built using superconducting transmon qubits arranged in a square lattice and interconnected via tunable couplers. This high-connectivity configuration enables efficient mapping of quantum algorithms to the device topology. The square lattice design natively supports surface-code error correction, positioning it for future fault-tolerant quantum computing applications.<\/p>\n<p>The device supports arbitrary X and Y rotations as native single-qubit gates and uses the CZ gate as its native two-qubit operation. This gate set provides flexibility for implementing quantum algorithms while maintaining high fidelity operations. Early characterization data shows median single-qubit gate fidelity of 99.93% and median two-qubit gate fidelity of 99.5%. Up-to-date performance metrics can be found on Emerald\u2019s device details page in the Braket Console.<\/p>\n<p>        <img decoding=\"async\" aria-describedby=\"caption-attachment-4911\" loading=\"lazy\" class=\" wp-image-4911\" src=\"https:\/\/www.newsbeep.com\/us\/wp-content\/uploads\/2025\/07\/Screenshot-2025-07-14-at-12.14.39\u202fPM.png\" alt=\"Figure 2: The Emerald QPU topology showing a 54-qubit square lattice with tunable couplers\" width=\"498\" height=\"463\"\/> <\/p>\n<p id=\"caption-attachment-4911\" class=\"wp-caption-text\">Figure 2: The Emerald QPU topology showing a 54-qubit square lattice with tunable couplers<\/p>\n<p>       Enhanced availability and accessibility <\/p>\n<p>Both IQM Emerald and Garnet are available 19 hours a day, enabling customers to run quantum workloads at their convenience regardless of time zone. enables continuous experimentation and development cycles for customers globally.<\/p>\n<p>Customers can access these EU-based QPUs in the Europe (Stockholm) Region, meaning customers can meet European data residency requirements and work with cutting-edge hybrid quantum-classical computing capabilities all in one environment.<\/p>\n<p>       Getting Started with Emerald on Braket <\/p>\n<p>Braket provides customers a unified, easy-to-use programming interface to access quantum hardware. Customers can build, test, and run quantum programs on Emerald with the Braket SDK, or other popular programming frameworks, such as Qiskit, Pennylane, and NVIDIA CUDA-Q. To execute programs on Emerald, specify the Amazon Resource Name (ARN) in the device definition before running your circuit:<\/p>\n<p>       device = AwsDevice(&#8220;arn:aws:braket:eu-north-1::device\/qpu\/iqm\/Emerald&#8221;) <\/p>\n<p>You can run a circuit with just a few lines of code as shown in the Bell State example that follows:<\/p>\n<p>       from braket.aws import AwsDevice<br \/>\nfrom braket.circuits import Circuit<\/p>\n<p>device = AwsDevice(&#8220;arn:aws:braket:eu-north-1::device\/qpu\/iqm\/Emerald&#8221;)<\/p>\n<p># run circuit<br \/>\nbell = Circuit().h(0).cnot(control=0, target=1)<br \/>\nresult = device.run(bell, shots=1000).result()<br \/>\n       Exploring larger-scale quantum entanglement on Emerald <\/p>\n<p>The 54-qubit capacity of Emerald enables exploration of quantum algorithms that require substantial qubit resources. <a href=\"https:\/\/aws.amazon.com\/blogs\/quantum-computing\/amazon-braket-launches-new-superconducting-quantum-processor-from-iqm\/\" rel=\"nofollow noopener\" target=\"_blank\">Building on the GHZ state experiments demonstrated with Garnet<\/a>, Emerald\u2019s expanded qubit count and high connectivity allow for even larger entangled states and more complex quantum circuits.<\/p>\n<p>Here\u2019s an example of preparing a 49-qubit GHZ state using Emerald\u2019s square lattice connectivity:<\/p>\n<p>       from braket.aws import AwsDevice<br \/>\nfrom braket.circuits import Circuit<\/p>\n<p>device = AwsDevice(&#8220;arn:aws:braket:eu-north-1::device\/qpu\/iqm\/Emerald&#8221;)<\/p>\n<p># Define a path through Emerald&#8217;s topology<br \/>\npath = [<br \/>\n        1, 2, 6, 12, 13, 14, 22, 30, 31, 39, 38, 46, 45,<br \/>\n        51, 50, 54, 53, 52, 48, 47, 41, 33, 32, 24, 23,<br \/>\n        15, 16, 8, 9, 3, 4, 5, 11, 10, 18, 17, 25, 26, 27,<br \/>\n        19, 20, 21, 29, 37, 36, 35, 34, 42, 43<br \/>\n]<\/p>\n<p>circuit = Circuit().h(path[0])<br \/>\nfor idx in range(len(path)-1):<br \/>\n    q1 = path[idx]<br \/>\n    q2 = path[idx+1]<br \/>\n    circuit.cnot(q1, q2)<\/p>\n<p>task = device.run(circuit, shots=5000, disable_qubit_rewiring=True)<\/p>\n<p>       Advanced quantum programming with dynamic circuits <\/p>\n<p>Emerald supports <a href=\"https:\/\/aws.amazon.com\/blogs\/quantum-computing\/experiment-with-dynamic-circuits-on-iqm-garnet-with-amazon-braket\/\" rel=\"nofollow noopener\" target=\"_blank\">Amazon Braket\u2019s experimental dynamic circuits capability<\/a>, enabling quantum programs that measure qubits mid-circuit and apply quantum operations conditionally based on measurement results. This capability opens new possibilities for quantum error correction protocols, adaptive algorithms, and efficient qubit utilization through active reset.<br \/>The following example demonstrates qubit reuse through active reset using dynamic circuits on Emerald:<\/p>\n<p>       from braket.aws import AwsDevice<br \/>\nfrom braket.circuits import Circuit<br \/>\nfrom braket.experimental_capabilities import EnableExperimentalCapability<br \/>\nfrom math import pi<\/p>\n<p>with EnableExperimentalCapability():<br \/>\n    circuit = Circuit()<br \/>\n    circuit.prx(1, pi, 0)  # Flip qubit 1 to |1&gt; state<br \/>\n    circuit.measure_ff(1, feedback_key=0)  # Mid-circuit measurement<br \/>\n    circuit.cc_prx(1, pi, 0, feedback_key=0)  # Conditional bit flip<br \/>\ncircuit = Circuit().add_verbatim_box(circuit)<\/p>\n<p>device = AwsDevice(&#8220;arn:aws:braket:eu-north-1::device\/qpu\/iqm\/Emerald&#8221;)<\/p>\n<p>result = device.run(circuit, shots=100).result()<br \/>\nprint(f&#8221;Measurement counts: {result.measurement_counts}&#8221;)<br \/>\n# Expected: predominantly &#8220;0&#8221; due to active reset<\/p>\n<p>       Get Started Today <\/p>\n<p>Visit the <a href=\"https:\/\/us-west-2.console.aws.amazon.com\/braket\/home?region=us-west-2#\/dashboard\" rel=\"nofollow noopener\" target=\"_blank\">Amazon Braket management console<\/a> to view the device topology, availability, and get up-to-date information about single and two-qubit gate fidelities and readout fidelities. Researchers at accredited institutions can apply for AWS credits to support experiments on Amazon Braket through the <a href=\"https:\/\/aws.amazon.com\/government-education\/research-and-technical-computing\/cloud-credit-for-research\/\" rel=\"nofollow noopener\" target=\"_blank\">AWS Cloud Credits for Research program<\/a>.<\/p>\n<p>To get started with running your own quantum programs on the Emerald processor, refer to our <a href=\"https:\/\/github.com\/amazon-braket\/amazon-braket-examples\" rel=\"nofollow noopener\" target=\"_blank\">GitHub repository for example notebooks and tutorials<\/a>. You can run these programs using one of our managed Jupyter notebooks or from your local development environment.<\/p>\n","protected":false},"excerpt":{"rendered":"Amazon Braket enables customers to design and run quantum algorithms on a broad selection of quantum hardware through&hellip;\n","protected":false},"author":2,"featured_media":26745,"comment_status":"","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[46],"tags":[191,74],"class_list":{"0":"post-26744","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-computing","8":"tag-computing","9":"tag-technology"},"_links":{"self":[{"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/posts\/26744","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/comments?post=26744"}],"version-history":[{"count":0,"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/posts\/26744\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/media\/26745"}],"wp:attachment":[{"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/media?parent=26744"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/categories?post=26744"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.newsbeep.com\/us\/wp-json\/wp\/v2\/tags?post=26744"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}