-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprevious_titles.txt
1234 lines (1234 loc) · 95.6 KB
/
previous_titles.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Stochastic Quantum Dynamics Stabilization: A Lyapunov-Based Control Approach with Homodyne-Mediated Filtering
Designing high-fidelity two-qubit gates between fluxonium qubits
Harnessing two-photon dissipation for enhanced quantum measurement and control
Syncopated Dynamical Decoupling for Suppressing Crosstalk in Quantum Circuits
Is the effective potential, effective for dynamics?
Anomalous magnetic flux via junction twist-angle in a triplet-superconducting transmon qubit
Coexistence of nonequilibrium density and equilibrium energy distribution of quasiparticles in a superconducting qubit
Protecting entanglement between logical qubits via quantum error correction
Model-Based Optimization of Superconducting Qubit Readout
Ultra-long relaxation of a Kramers qubit formed in a bilayer graphene quantum dot
Gauge invariant quantization for circuits including Josephson junctions
Encoding a magic state with beyond break-even fidelity
Tailoring quantum error correction to spin qubits
A 4-8 GHz Kinetic Inductance Travelling-Wave Parametric Amplifier Using Four-Wave Mixing with Near Quantum-Limit Noise Performance
Solving lattice gauge theories using the quantum Krylov algorithm and qubitization
Quantum Fourier Transform using Dynamic Circuits
Efficient Tensor Networks for Control-Enhanced Quantum Metrology
Parametric tuning of dynamical phase transitions in ultracold reactions
A lower bound on the space overhead of fault-tolerant quantum computation
Robust gates with spin-locked superconducting qubits
Unifying uncertainties for rotor-like quantum systems
Multi-qubit Dynamical Decoupling for Enhanced Crosstalk Suppression
Quantum Advantage of One-Way Squeezing in Enhancing Weak-Force Sensing
Fast biological imaging with quantum-enhanced Raman microscopy
Effectiveness of the syndrome extraction circuit with flag qubits on IBM quantum hardware
Low-density parity-check representation of fault-tolerant quantum circuits
Complete equational theories for classical and quantum Gaussian relations
Quantum chip design optimization and automation in superconducting coupler architecture
Assessment of error variation in high-fidelity two-qubit gates in silicon
Squeezing Oscillations in a Multimode Bosonic Josephson Junction
High-Sensitivity ac-Charge Detection with a MHz-Frequency Fluxonium Qubit
Demonstrating Scalable Randomized Benchmarking of Universal Gate Sets
Quantum memory at nonzero temperature in a thermodynamically trivial system
Universal high-fidelity quantum gates for spin-qubits in diamond
Granular Aluminum Parametric Amplifier for Low-Noise Measurements in Tesla Fields
Dynamics and Resonance Fluorescence from a Superconducting Artificial Atom Doubly Driven by Quantized and Classical Fields
Kinetic inductance traveling wave amplifier designs for practical microwave readout applications
One Axis Twisting (OAT) spin squeezing for metrology
Graph Algorithms with Neutral Atom Quantum Processors
A tweezer array with 6100 highly coherent atomic qubits
Control of an environmental spin defect beyond the coherence limit of a central spin
Single-Atom Amplification Assisted by Multiple Sideband Interference in 1D Waveguide QED Systems
Effective versus Floquet theory for the Kerr parametric oscillator
Observation of discrete charge states of a coherent two-level system in a superconducting qubit
The effect of niobium thin film structure on losses in superconducting circuits
Strong mechanical squeezing in a microcavity with double quantum wells
Gate-Compatible Circuit Quantum Electrodynamics in a Three-Dimensional Cavity Architecture
Demonstrating a Long-Coherence Dual-Rail Erasure Qubit Using Tunable Transmons
Single-Shot Readout and Weak Measurement of a Tin-Vacancy Qubit in Diamond
Tensor Quantum Programming
Experimental fault-tolerant code switching
Demonstrating a long-coherence dual-rail erasure qubit using tunable transmons
Quantum stabilizer formalism for any composite system
Superconducting processor design optimization for quantum error correction performance
Quantum dynamical maps for single-qubit gates under non-Markovian phase noise
A multiplexed control architecture for superconducting qubits with row-column addressing
dc atomtronic quantum interference device: quantum superposition of persistent-current states and a parity-protected qubit
Projective squeezing for translation symmetric bosonic codes
Direct Probe of Topology and Geometry of Quantum States on IBM Q
Quantum Machine Learning With a Limited Number Of Qubits
Perturbative Analysis of Quasi-periodic Patterning of Transmon Quantum Computers: Enhancement of Many-Body Localization
qec_code_sim: An open-source Python framework for estimating the effectiveness of quantum-error correcting codes on superconducting qubits
Noisy atomic magnetometry with Kalman filtering and measurement-based feedback
Optimal control in large open quantum systems: the case of transmon readout and reset
Theory of quasiparticle-induced errors in driven-dissipative Schr\"odinger cat qubits
Emulating two qubits with a four-level transmon qudit for variational quantum algorithms
Autoparametric resonance extending the bit-flip time of a cat qubit up to 0.3 s
Phase estimation via coherent and photon-catalyzed squeezed vacuum states
Many-hypercube codes: High-rate quantum error-correcting codes for high-performance fault-tolerant quantum computation
Coupler-Assisted Leakage Reduction for Scalable Quantum Error Correction with Superconducting Qubits
Certifiable lower bounds of Wigner negativity volume and non-Gaussian entanglement with conditional displacement gates
Integer Fluxonium Qubit
Holographic Gaussian Boson Sampling with Matrix Product States on 3D cQED Processors
The thermodynamics of the quantum Mpemba effect
A gate tunable transmon qubit in planar Ge
Generation of genuine all-way entanglement in defect-nuclear spin systems through dynamical decoupling sequences
Production of genuine multimode entanglement in circular waveguides with long-range interactions
Codesign of quantum error-correcting codes and modular chiplets in the presence of defects
Practical trainable temporal post-processor for multi-state quantum measurement
Frequency-dependent squeezing for gravitational-wave detection through quantum teleportation
Strategies and trade-offs for controllability and memory time of ultra-high-quality microwave cavities in circuit QED
Entanglement in Cosmology
Depth-Optimal Addressing of 2D Qubit Array with 1D Controls Based on Exact Binary Matrix Factorization
Compilation of a simple chemistry application to quantum error correction primitives
Strong Thermomechanical Noise Squeezing Stabilized by Feedback
Conditional-<span class="sc">not</span> Displacement: Fast Multioscillator Control with a Single Qubit
Squeezing below the ground state of motion of a continuously monitored levitating nanoparticle
Probing the quantum nature of gravity using a Bose-Einstein condensate; "Erste Abhandlung"
Optimization tools for distance-preserving flag fault-tolerant error correction
Tangling schedules eases hardware connectivity requirements for quantum error correction
Average R\'enyi Entanglement Entropy in Gaussian Boson Sampling
Properties and Applications of the Kirkwood-Dirac Distribution
Minimal entanglement for injecting diagonal gates
Quantum asymptotic amplitude for quantum oscillatory systems from the Koopman operator viewpoint
Charge-parity switching effects and optimisation of transmon-qubit design parameters
On-demand driven dissipation for cavity reset and cooling
Diagonal Coset Approach to Topological Quantum Computation with Fibonacci Anyons
Coherent Control of an Optical Quantum Dot Using Phonons and Photons
Ab-initio tree-tensor-network digital twin for quantum computer benchmarking in 2D
Efficient Implementation of Multi-Controlled Quantum Gates
Conditional not displacement: fast multi-oscillator control with a single qubit
Computational Capabilities and Compiler Development for Neutral Atom Quantum Processors: Connecting Tool Developers and Hardware Experts
Theory of Multimode Squeezed Light Generation in Lossy Media
Teleportation of a qubit using exotic entangled coherent states
Dephasing in Fluxonium Qubits from Coherent Quantum Phase Slips
Integrability of Goldilocks quantum cellular automata
Promatch: Extending the Reach of Real-Time Quantum Error Correction with Adaptive Predecoding
Braiding Fibonacci anyons
Dynamics of magnetization at infinite temperature in a Heisenberg spin chain
Efficient two-qutrit gates in superconducting circuits using parametric coupling
Simultaneous Discovery of Quantum Error Correction Codes and Encoders with a Noise-Aware Reinforcement Learning Agent
Entanglement and Squeezing of the Optical Field Modes in High Harmonic Generation
Quantum Digital Simulation of Cavity Quantum Electrodynamics: Insights from Superconducting and Trapped Ion Quantum Testbeds
iSWAP-type geometric gates induced by paths on Schmidt sphere
Robust Quantum Gates against Correlated Noise in Integrated Quantum Chips
Logical Gates and Read-Out of Superconducting Gottesman-Kitaev-Preskill Qubits
Demonstration of quantum network protocols over a 14-km urban fiber link
Portable diamond maser with reduced magnetic field through orientation
NMon: enhanced transmon qubit based on parallel arrays of Josephson junctions
Hybrid quantum systems with artificial atoms in solid state
Continuous-variable quantum key distribution with noisy squeezed states
Machine learning for efficient generation of universal hybrid quantum computing resources
Shaping photons: quantum computation with bosonic cQED
Quantum Generative Adversarial Networks in a Silicon Photonic Chip with Maximum Expressibility
How coherence measurements of a qubit steer its quantum environment
High-Fidelity CZ Gates in Double Quantum Dot -- Circuit QED Systems Beyond the Rotating-Wave Approximation
A High Performance Compiler for Very Large Scale Surface Code Computations
Incorporation of random alloy GaBi$_{x}$As$_{1-x}$ barriers in InAs quantum dot molecules: alloy strain and orbital effects towards enhanced tunneling
Scalable noise characterisation of syndrome extraction circuits with averaged circuit eigenvalue sampling
Recovering quantum coherence of a cavity qubit through environment monitoring and active feedback
Counting statistics of ultra-broadband microwave photons
Autonomous Quantum Error Correction of Gottesman-Kitaev-Preskill States
Realization of two-qubit gates and multi-body entanglement states in an asymmetric superconducting circuits
Benchmarking logical three-qubit quantum Fourier transform encoded in the Steane code on a trapped-ion quantum computer
Macroscopic Bell state between a millimeter-sized spin system and a superconducting qubit
Single-shot decoding of good quantum LDPC codes
Grover's algorithm in a four-qubit silicon processor above the fault-tolerant threshold
Performance analysis of a filtering variational quantum algorithm
Skyrmion-mechanical hybrid quantum systems: Manipulation of skyrmion qubits via phonons
Coherent control of levitated nanoparticles via dipole-dipole interaction
A randomized benchmarking suite for mid-circuit measurements
Achieving metrological limits using ancilla-free quantum error-correcting codes
Stochastic Model of Qudit Measurement for Superconducting Quantum Information Processing
Identifiability and Characterization of Transmon Qutrits Through Bayesian Experimental Design
Ab-Initio Calculations of Nonlinear Susceptibility and Multi-Phonon Mixing Processes in a 2DEG-Piezoelectric Heterostructure
Landau-Zener without a Qubit: Unveiling Multiphoton Interference, Synthetic Floquet Dimensions, and Dissipative Quantum Chaos
Few-mode squeezing in type-I parametric downconversion by complete group velocity matching
A spin-refrigerated cavity quantum electrodynamic sensor
Quantum Simulation of Open Quantum Dynamics via Non-Markovian Quantum State Diffusion
Minimal-noise estimation of noncommuting rotations of a spin
Ultra-relativistic quark-nucleus scattering on quantum computers
Fault-tolerant quantum computing with the parity code and noise-biased qubits
Entanglement Entropy of a Scalar Field in a Squeezed State
Optimized measurement-free and fault-tolerant quantum error correction for neutral atoms
Parametrically-controlled microwave-photonic interface for the fluxonium
Tailoring Fault-Tolerance to Quantum Algorithms
Dynamically enhancing qubit-photon interactions with anti-squeezing
Leakage Benchmarking for Universal Gate Sets
Error analysis of bit-flip qubits under random telegraph noise for low and high temperature measurement application
Characterizing Coherent Errors using Matrix-Element Amplification
Qubit-assisted quantum metrology
Erasure-tolerance protocol for the surface codes on Rydberg atomic quantum computers
Nonclassicality in Two-Mode Stabilized Squeezed Coherent State: Quantum-to-Classical transition
High-rate quantum LDPC codes for long-range-connected neutral atom registers
Quantum Imaging Beyond the Standard-Quantum Limit and Phase Distillation
Anharmonic Effects on the Squeezing of Axion Perturbations
Lattice Surgery for Dummies
Mechanical quadrature squeezing beyond the 3dB limit via quantum learning control
Nanomechanical ancilla qubits generator for error correction algorithms in quantum computation
High-coherence superconducting qubits made using industry-standard, advanced semiconductor manufacturing
Distributed Architecture for FPGA-based Superconducting Qubit Control
DGR: Tackling Drifted and Correlated Noise in Quantum Error Correction via Decoding Graph Re-weighting
Limitations in Fluorescence-Detected Entangled Two-Photon-Absorption Experiments: Exploring the Low- to High-Gain Squeezing Regimes
High-Coherence Kerr-cat qubit in 2D architecture
High-fidelity and Fault-tolerant Teleportation of a Logical Qubit using Transversal Gates and Lattice Surgery on a Trapped-ion Quantum Computer
Autoparametric Resonance Extending the Bit-Flip Time of a Cat Qubit up to 0.3 s
Good Gottesman-Kitaev-Preskill codes from the NTRU cryptosystem
From Qubits to Opinions: Operator and Error Syndrome Measurement in Quantum-Inspired Social Simulations on Transversal Gates
A quantum annealing approach to minimum distance problem
High-fidelity $\sqrt{i\text{SWAP}}$ gates using a fixed coupler driven by two microwave pulses
Single-Photon-Subtracted-Squeezed-Vacuum-State Based Postselected Weak Measurement and its Applications
A SAT Scalpel for Lattice Surgery: Representation and Synthesis of Subroutines for Surface-Code Fault-Tolerant Quantum Computing
Tunable coupling of a quantum phononic resonator to a transmon qubit with flip-chip architecture
How to surpass no-go limits in Gaussian quantum error correction and entangled Gaussian state distillation?
An entanglement-enhanced atomic gravimeter
Quantum Benchmarking via Random Dynamical Quantum Maps
Decoherence induced by a sparse bath of two-level fluctuators: peculiar features of $1/f$ noise in high-quality qubits
A Strategy for Preparing Quantum Squeezed States Using Reinforcement Learning
Boosting generation rate of squeezed single-photon states by generalized photon subtraction
A simple method for compiling quantum stabilizer circuits
Many-body quantum register for a spin qubit
Enhanced twist-and-turn dynamics of spin squeezing in internal bosonic Josephson junctions
Operational Markovianization in Randomized Benchmarking
A quantum neural network framework for scalable quantum circuit approximation of unitary matrices
Averting multi-qubit burst errors in surface code magic state factories
Quantum thermodynamics of the Caldeira-Leggett model with non-equilibrium Gaussian reservoirs
QUACK: Quantum Aligned Centroid Kernel
Expanding the Horizon: Enabling Hybrid Quantum Transfer Learning for Long-Tailed Chest X-Ray Classification
Direct detection of down-converted photons spontaneously produced at a single Josephson junction
Qubit dephasing by spectrally diffusing quantum two-level systems
Control Requirements and Benchmarks for Quantum Error Correction
How much entanglement is needed for quantum error correction?
On-demand shaped photon emission based on a parametrically modulated qubit
Driven Multiphoton Qubit-Resonator Interactions
Design and execution of quantum circuits using tens of superconducting qubits and thousands of gates for dense Ising optimization problems
Single-photon induced instabilities in a cavity electromechanical device
Quasi-Probabilistic Readout Correction of Mid-Circuit Measurements for Adaptive Feedback via Measurement Randomized Compiling
Quantum Circuit Learning on NISQ Hardware
Strategies for implementing quantum error correction in molecular rotation
Probing single electrons across 300 mm spin qubit wafers
Decoding algorithms for surface codes
Polylogarithmic-depth controlled-NOT gates without ancilla qubits
Flux-Tunable Regimes and Supersymmetry in Twisted Cuprate Heterostructures
Spatially parallel decoding for multi-qubit lattice surgery
Erasure-tolerance scheme for the surface codes on Rydberg atomic quantum computers
Early Fault-Tolerant Quantum Algorithms in Practice: Application to Ground-State Energy Estimation
Mitigating errors in logical qubits
Protecting quantum gates from arbitrary single- and two-qubit errors
Data augmentation experiments with style-based quantum generative adversarial networks on trapped-ion and superconducting-qubit technologies
Large mechanical squeezing through synthetic magnetism in optomechanics
Epitaxial {\alpha}-Ta (110) film on a-plane sapphire substrate for superconducting qubits on wafer scale
Quantum enhanced balanced heterodyne readout for differential interferometry
Strong broadband intensity noise squeezing from near-infrared to terahertz frequencies in semiconductor lasers with nonlinear dissipation
Fabrication of Al/AlOx/Al junctions with high uniformity and stability on sapphire substrates
High-quality superconducting {\alpha}-Ta film sputtered on heated silicon substrate
Chemistry Beyond Exact Solutions on a Quantum-Centric Supercomputer
Hybrid Quantum Graph Neural Network for Molecular Property Prediction
Multimode amplitude squeezing through cascaded nonlinear optical processes
Probing Quantum Telecloning on Superconducting Quantum Processors
Qplacer: Frequency-Aware Component Placement for Superconducting Quantum Computers
Quantum Sensing of Antiferromagnetic Magnon Two-Mode Squeezed Vacuum
Characterization of errors in a CNOT between surface code patches
Achieving millisecond coherence fluxonium through overlap Josephson junctions
Sudden change of interferometric power for X shape states
Self-correcting GKP qubit and gates in a driven-dissipative circuit
Quantum Computing - A new scientific revolution in the making
Robustness of the projected squeezed state protocol
Arctic: A Field Programmable Quantum Array Scheduling Technique
Quantum Optics with Recoiled Free Electrons
FlexiSCD: Flexible Surface Code Deformer for Dynamic Defects
Photon loss effects on light-mediated non-Gaussian entangled Bose-Einstein condensates projecting with different photon measurement outcomes
Fault-Tolerant Quantum LDPC Encoders
ZX Graphical Calculus for Continuous-Variable Quantum Processes
Memory-corrected quantum repeaters with adaptive syndrome identification
Quantum Computation Using Large Spin Qudits
Suppression of quasiparticle poisoning in transmon qubits by gap engineering
Scalable multi-qubit intrinsic gates in quantum dot arrays
Entanglement Assisted Probe of the Non-Markovian to Markovian Transition in Open Quantum System Dynamics
Measurement of Small Photon Numbers in Circuit QED Resonators
An Abstract Model and Efficient Routing for Logical Entangling Gates on Zoned Neutral Atom Architectures
Sharing Quantum Steering via Standard Projective Measurements
The Bell Based Super Coherent States. Uncertainty Relations, Golden Ratio and Fermion-Boson Entanglement
A new twist on the Majorana surface code: Bosonic and fermionic defects for fault-tolerant quantum computation
Magic of quantum hypergraph states
Improving Zero-noise Extrapolation for Quantum-gate Error Mitigation using a Noise-aware Folding Method
Entanglement assisted probe of the non-Markovian to Markovian transition in open quantum system dynamics
Enabling Leakage Reduction via Fast and High-Fidelity Qutrit Readout
Demonstrating a universal logical gate set on a superconducting quantum processor
Equivalence of flexible stripline and coaxial cables for superconducting qubit control and readout pulses
Quantum simulation of dissipation for Maxwell equations in dispersive media
Generalized Conditional Displacement
Blueprint for all-to-all connected superconducting spin qubits
Fault Tolerance Embedded in a Quantum-Gap-Estimation Algorithm with Trial-State Optimization
Decoherence in Exchange-Coupled Quantum Spin Qubit Systems: Impact of Multiqubit Interactions and Geometric Connectivity
Exponential improvements in the simulation of lattice gauge theories using near-optimal techniques
Resource-Efficient Hybrid Quantum-Classical Simulation Algorithm
Quantum Circuit Discovery for Fault-Tolerant Logical State Preparation with Reinforcement Learning
Coexistence of Nonequilibrium Density and Equilibrium Energy Distribution of Quasiparticles in a Superconducting Qubit
Symmetrically Threaded SQUIDs As Next Generation Kerr-cat Qubits
Ion-Based Quantum Computing Hardware: Performance and End-User Perspective
Model-Based Qubit Noise Spectroscopy
Exact Results for a Boundary-Driven Double Spin Chain and Resource-Efficient Remote Entanglement Stabilization
Quantum coherent and measurement feedback control based on atoms coupled with a semi-infinite waveguide
Thresholds for the distributed surface code in the presence of memory decoherence
Heralded single-photon source based on superpositions of squeezed states
Optimized mechanical quadrature squeezing beyond the 3 dB limit via gradient-descent algorithm
Theory of fractional quantum Hall liquids coupled to quantum light and emergent graviton-polaritons
Circuit QED theory of direct and dual Shapiro steps with finite-size transmission line resonators
Non-adiabatic holonomic quantum operations in continuous variable systems
Nonreciprocal Superradiant Phase Transitions and Multicriticality in a Cavity QED System
Qudit generalization of the qubit echo and its application to a qutrit-based Toffoli gate
Qubit-efficient Variational Quantum Algorithms for Image Segmentation
Controlling dephasing of coupled qubits via shared-bath coherence
Two-level system hyperpolarization using a quantum Szilard engine
Cross-cap defects and fault-tolerant logical gates in the surface code and the honeycomb Floquet code
Maximizing the Yield of Bucket Brigade Quantum Random Access Memory using Redundancy Repair
Majorana modes in trapped-ion system and their Floquet engineering
Simple, High Saturation Power, Quantum-limited, RF SQUID Array-based Josephson Parametric Amplifiers
Cosmological complexity of the modified dispersion relation
Parametrically controlled chiral interface for superconducting quantum devices
Dynamically corrected gates in silicon singlet-triplet spin qubits
Parameterization and optimizability of pulse-level VQEs
Error Crafting in Probabilistic Quantum Gate Synthesis
Fast adiabatic preparation of multi-squeezed states by jumping along the path
Cyclic Quantum Teleportation of Two-Qubit Entangled States by using Six-Qubit Cluster State and Six-Qubit Entangled State
Multi-qubit Lattice Surgery Scheduling
Quantum-Classical Autoencoder Architectures for End-to-End Radio Communication
Evaluating radiation impact on transmon qubits in above and underground facilities
Optimizing one-axis twists for variational Bayesian quantum metrology
Detecting Measurement-Induced Entanglement Transitions With Unitary Mirror Circuits
Chiral quantum heating and cooling with an optically controlled ion
Quantum Optimal Control of Squeezing in Cavity Optomechanics
Fault-tolerant simulation of Lattice Gauge Theories with gauge covariant codes
Characterising semi-Clifford gates using algebraic sets
Analysis of spin-squeezing generation in cavity-coupled atomic ensembles with continuous measurements
Concatenating Binomial Codes with the Planar Code
Beating the Standard Quantum Limit Electronic Field Sensing by Simultaneously Using Quantum Entanglement and Squeezing
Parity-dependent state transfer for direct entanglement generation
Investigating pump harmonics generation in a SNAIL-based Traveling Wave Parametric Amplifier
Decoherence-free many-body Hamiltonians in nonlinear waveguide quantum electrodynamics
Atomistic compositional details and their importance for spin qubits in isotope-purified silicon-germanium quantum wells
Bases for optimising stabiliser decompositions of quantum states
Unified linear response theory of quantum electronic circuits
Single-electron qubits based on quantum ring states on solid neon surface
Controllable Andreev Bound States in Bilayer Graphene Josephson Junctions from Short to Long Junction Limits
Experimental demonstration of a fault-tolerant qubit encoded on a hyperfine-coupled qudit
Interferometry of quantum correlation functions to access quasiprobability distribution of work
A Near Quantum Limited Sub-GHz TiN Kinetic Inductance Traveling Wave Parametric Amplifier Operating in a Frequency Translating Mode
Incompressible Navier-Stokes solve on noisy quantum hardware via a hybrid quantum-classical scheme
Tuneable entangled photon pair generation in a liquid crystal
Efficient Initialization of Fluxonium Qubits based on Auxiliary Energy Levels
Quantum speed limit of open quantum system models using the Wigner function
Resource Optimized Quantum Squaring Circuit
Demonstration of Erasure Conversion in a Molecular Tweezer Array
Demonstration of two-dimensional connectivity for a scalable error-corrected ion-trap quantum processor architecture
Noise-adapted qudit codes for amplitude-damping noise
Entangling four logical qubits beyond break-even in a nonlocal code
In-operando microwave scattering-parameter calibrated measurement of a Josephson travelling wave parametric amplifier
A Quantum Neural Network-Based Approach to Power Quality Disturbances Detection and Recognition
Quantum Sensing from Gravity as Universal Dephasing Channel for Qubits
Hot Schr\"odinger Cat States
Random Pulse Sequences for Qubit Noise Spectroscopy
Flying-cat parity checks for quantum error correction
Leakage Mobility in Superconducting Qubits as a Leakage Reduction Unit
Circuit-level fault tolerance of cat codes
Interfacing Gottesman-Kitaev-Preskill Qubits to Quantum Memories
High-precision and low-depth eigenstate property estimation: theory and resource estimation
Factory-based Fault-tolerant Preparation of Quantum Polar Codes Encoding One logical Qubit
Success probabilities in time-reversal based hybrid quantum state transfer
Deterministic Preparation of Optical Squeezed Cat and Gottesman-Kitaev-Preskill States
Efficient Fault-Tolerant Single Qubit Gate Approximation And Universal Quantum Computation Without Using The Solovay-Kitaev Theorem
Slow and Stored Light via Electromagnetically Induced Transparency Using A $\Lambda$-type Superconducting Artificial Atom
Heat currents in qubit systems
Proposal of ensemble qubits with two-atom decay
Entanglement transitions in quantum-enhanced experiments
Field-Based Formalism for Calculating Multi-Qubit Exchange Coupling Rates for Transmon Qubits
Fault-tolerant resource estimation using graph-state compilation on a modular superconducting architecture
Quantum simulation of one-dimensional fermionic systems with Ising Hamiltonians
Analog information decoding of bosonic quantum LDPC codes
Selective Single and Double-Mode Quantum Limited Amplifier
Performance Analysis of Superconductor-constriction-Superconductor Transmon Qubits
Conceptual Problems in Quantum Squeezing
A mechanical qubit
Balanced Coupling in Electromagnetic Circuits
Suppressing Counter-Rotating Errors for Fast Single-Qubit Gates with Fluxonium
Two-tone spectroscopy of high-frequency quantum circuits with a Josephson emitter
Ergodic and mixing quantum channels: From two-qubit to many-body quantum systems
Fault-tolerant quantum computation using large spin cat-codes
Entanglement, Squeezing and non-Locality in Filtered Two-Mode Squeezed Mixed States
Probing the quantum nature of gravity using a Bose-Einstein condensate
Contextuality in anomalous heat flow
Integration of through-sapphire substrate machining with superconducting quantum processors
Reinforcement learning pulses for transmon qubit entangling gates
The Superconducting Quasiparticle-Amplifying Transmon: A Qubit-Based Sensor for meV Scale Phonons and Single THz Photons
Fast and Accurate GHZ Encoding Using All-to-all Interactions
Minimal evolution times for fast, pulse-based state preparation in silicon spin qubits
Lecture Notes on Quantum Algorithms in Open Quantum Systems
Quantum metrology with a squeezed Kerr oscillator
Multi-time quantum process tomography on a superconducting qubit
The Near-optimal Performance of Quantum Error Correction Codes
Many-excitation removal of a transmon qubit using a single-junction quantum-circuit refrigerator and a two-tone microwave drive
Directional emission of a readout resonator for qubit measurement
Fermion-parity qubit in a proximitized double quantum dot
Quantum Compiling with Reinforcement Learning on a Superconducting Processor
A hybrid atom tweezer array of nuclear spin and optical clock qubits
Transversal CNOT gate with multi-cycle error correction
Realizing string-net condensation: Fibonacci anyon braiding for universal gates and sampling chromatic polynomials
Three-outcome multipartite Bell inequalities: applications to dimension witnessing and spin-nematic squeezing in many-body systems
Exploring Gamification in Quantum Computing: The Qubit Factory
Measurement of Many-Body Quantum Correlations in Superconducting Circuits
Path-entangled radiation from kinetic inductance amplifier
Gate Teleportation in Noisy Quantum Networks with the SquidASM Simulator
Photon number distribution of squeezed light from a silicon nitride microresonator measured without photon number resolving detectors
Efficient Chromatic-Number-Based Multi-Qubit Decoherence and Crosstalk Suppression
Quantum limits of superconducting-photonic links and their extension to mm-waves
Ambiguity Clustering: an accurate and efficient decoder for qLDPC codes
A GKP qubit protected by dissipation in a high-impedance superconducting circuit driven by a microwave frequency comb
Synthetic magnetism enhanced mechanical squeezing in Brillouin optomechanical system
Chip-Scale Point-Source Sagnac Interferometer by Phase-Space Squeezing
Quantum squeezing in a nonlinear mechanical oscillator
A mid-circuit erasure check on a dual-rail cavity qubit using the joint-photon number-splitting regime of circuit QED
Magnon-mediated quantum gates for superconducting qubits
Upper bounds on probabilities in channel measurements on qubit channels and their applications
Spin Squeezing Enhanced Quantum Magnetometry with Nitrogen-Vacancy Center Qutrits
Fault-tolerant hyperbolic Floquet quantum error correcting codes
Optimal Control for Continuous Dynamical Decoupling
$\mathcal{PT}$-symmetric mapping of three states and its implementation on a cloud quantum processor
Quantum computer specification for nuclear structure calculations
Demonstration of a Squeezed Light Source on Thin-Film Lithium Niobate with Modal Phase Matching
Analyzing performance of $f$-deformed displaced Fock state in continuous-variable quantum teleportation
Quantum resolution limit of long-baseline imaging using distributed entanglement
High-Efficiency Low-Noise Optomechanical Crystal Photon-Phonon Transducers
Lieb-Robinson correlation function for the quantum transverse field Ising model
Fault-tolerant embedding of quantum circuits on hardware architectures via swap gates
MindSpore Quantum: A User-Friendly, High-Performance, and AI-Compatible Quantum Computing Framework
Nonclassical Light in a Three-Waveguide Coupler with Second-Order Nonlinearity
Efficiently improving the performance of noisy quantum computers
A Comparative Analysis of Hybrid-Quantum Classical Neural Networks
A quantum annealing approach to the minimum distance problem of quantum codes
Managing Classical Processing Requirements for Quantum Error Correction
Exact and approximate fluxonium array modes
Selective cooling and squeezing in a lossy optomechanical closed loop embodying an exceptional surface
Analytic solution to the nonlinear generation of squeezed states in a thermal bath
Resource overheads and attainable rates for trapped-ion lattice surgery
ML-Powered FPGA-based Real-Time Quantum State Discrimination Enabling Mid-circuit Measurements
Quantum voting machine encoded with microwave photons
Strong Converse Exponent for Entanglement-Assisted Communication
A Traveling-Wave Parametric Amplifier and Converter
Mixing of counterpropagating signals in a traveling-wave Josephson device
A Traveling Wave Parametric Amplifier Isolator
Entanglement Assisted Squeezed States of Light in All Fiber Form-Factor
Complete quantum toolbox for an acoustic resonator
Inverse Mpemba Effect Demonstrated on a Single Trapped Ion Qubit
Hybrid Quantum-Classical Clustering for Preparing a Prior Distribution of Eigenspectrum
Non-Gaussian generalized two-mode squeezing: applications to two-ensemble spin squeezing and beyond
Realizing a Compact, High-Fidelity, Telecom-Wavelength Source of Multipartite Entangled Photons
Classical and Quantum Frequency Combs for Satellite-based Clock Synchronization
Influence of a squeezed prewell on tunneling properties and bound states in heterostructures
Robustness of Higher Dimensional Nonlocality against dual noise and sequential measurements
Efficient realization of quantum algorithms with qudits
State preparation by shallow circuits using feed forward
Revisiting the impact of dissipation on time-reversed one-axis-twist quantum-sensing protocols
Concatenating quantum error-correcting codes with decoherence-free subspaces and vice versa
Control of multi-modal scattering in a microwave frequency comb
Quantum Parity Detectors: a qubit based particle detection scheme with meV thresholds for rare-event searches
Two-mode squeezing and SU(1,1) interferometry with trapped ions
Parametric Light-Matter Interaction in the Single-Photon Strong Coupling Limit
Unifying Floquet theory of longitudinal and dispersive readout
Noise-adapted recovery circuits for quantum error correction
Non-classical correlations between a quantum probe and complex quantum systems in presence of noise
Limitations to Dynamical Error Suppression and Gate-Error Virtualization from Temporally Correlated Nonclassical Noise
Qudit Dynamical Decoupling on a Superconducting Quantum Processor
Entanglement marker for lifetime of time crystal in transmon-modulated open Dicke model
Continuous variable quantum teleportation using photon subtracted and photon added two mode squeezed coherent state
Stabilizing an individual charge fluctuator in a Si/SiGe quantum dot
Stochastic modeling of superconducting qudits in the dispersive regime
Two-dimensional topological effect in a transmon qubit array with tunable couplings
State Estimation and Control for Stochastic Quantum Dynamics with Homodyne Measurement: Stabilizing Qubits under Uncertainty
The strong-coupling quantum thermodynamics of quantum Brownian motion based on the exact solution of its reduced density matrix
Passive photonic CZ gate with two-level emitters in chiral multi-mode waveguide QED
Precision frequency tuning of tunable transmon qubits using alternating-bias assisted annealing
Low-cost noise reduction for Clifford circuits
Vacuum Beam Guide for Large-Scale Quantum Networks
The Quantum Imitation Game: Reverse Engineering of Quantum Machine Learning Models
Detection of broadband squeezed light with a low-noise die-level balanced receiver
Continuous variable dense coding under realistic non-ideal scenarios
Many-hypercube codes: High-rate quantum error-correcting codes for high-performance fault-tolerant quantum computing
Entanglement of photonic modes from a continuously driven two-level system
Spin/Phonon Dynamics in Single Molecular Magnets: I. quantum embedding
Magnon squeezing via reservoir-engineered optomagnomechanics
Modeling and Suppressing Unwanted Parasitic Interactions in Superconducting Circuits
Exactly-solved model of light-scattering errors in quantum simulations with metastable trapped-ion qubits
SSIP: automated surgery with quantum LDPC codes
Direct Measurement of Microwave Loss in Nb Films for Superconducting Qubits
Ultra-dispersive resonator readout of a quantum-dot qubit using longitudinal coupling
Quantum metrology of low frequency electromagnetic modes with frequency upconverters
Using quantum computers to identify prime numbers via entanglement dynamics
Enhancement of nonclassical properties of two-mode squeezed vacuum state with postselected von Neumann measurement
A cryogenic on-chip microwave pulse generator for large-scale superconducting quantum computing
Far from Perfect: Quantum Error Correction with (Hyperinvariant) Evenbly Codes
Decay-protected superconducting qubit with fast control enabled by integrated on-chip filters
Candidate for a Passively Protected Quantum Memory in Two Dimensions
Atomic and entanglement dynamics in the mixed squeezed coherent state version of the Jaynes-Cummings interaction
Robust teleportation of a surface code and cascade of topological quantum phase transitions
Systematic input scheme for many-boson Hamiltonians via quantum walk
Emerging Quadrature Lattices of Kerr Combs
Fault Tolerant Quantum Error Mitigation
Optimized Quantum Simulation Algorithms for Scalar Quantum Field Theories
Kinetic Inductance Parametric Converter
Subspace-Based Local Compilation of Variational Quantum Circuits for Large-Scale Quantum Many-Body Simulation
Diagonalization of large many-body Hamiltonians on a quantum processor
Robust and fast microwave-driven quantum logic for trapped-ion qubits
Agnostic Phase Estimation
Virtual Z gates and symmetric gate compilation
A Nanomechanical Atomic Force Qubit
Verifying the analogy between transversely coupled spin-1/2 systems and inductively-coupled fluxoniums
Qubit-efficient quantum combinatorial optimization solver
24 days-stable CNOT-gate on fluxonium qubits with over 99.9% fidelity
A Practical Quantum Algorithm for the Schur Transform
T-count optimization of approximate quantum Fourier transform
Modeling and Harmonic Balance Analysis of Parametric Amplifiers for Qubit Read-out
Error-Tolerant Amplification and Simulation of the Ultrastrong-Coupling Quantum Rabi Model
Alternating Bias Assisted Annealing of Amorphous Oxide Tunnel Junctions
Breadth-first graph traversal union-find decoder
An Exponential Mixing Condition for Quantum Channels
Pure kinetic inductance coupling for cQED with flux qubits
Systematic study of High $E_J/E_C$ transmon qudits up to $d = 12$
Contextual Subspace Variational Quantum Eigensolver Calculation of the Dissociation Curve of Molecular Nitrogen on a Superconducting Quantum Computer
SQuADDS: A validated design database and simulation workflow for superconducting qubit design
Multi-qubit gates and Schr\"odinger cat states in an optical clock
Twist-and-turn dynamics of spin squeezing in bosonic Josephson junctions: Enhanced shortcuts-to-adiabaticity approach
Entangling power, gate typicality and Measurement-induced Phase Transitions
Ancilla-assisted erasure of quantum information beyond Landauer's limit
Cross-resonance control of an oscillator with a fluxonium ancilla
Fast and Parallelizable Logical Computation with Homological Product Codes
Mitigating Losses of Superconducting Qubits Strongly Coupled to Defect Modes
Methods to achieve near-millisecond energy relaxation and dephasing times for a superconducting transmon qubit
Effect of group-velocity dispersion on the generation of multimode pulsed squeezed light in a synchronously pumped optical parametric oscillator
Robust multi-mode superconducting qubit designed with evolutionary algorithms
Near-quantum limited axion dark matter search with the ORGAN experiment around 26 $\mu$eV
Protecting Expressive Circuits with a Quantum Error Detection Code
Quantum memories for squeezed and coherent superpositions in a driven-dissipative nonlinear oscillator
Scalable spin squeezing with local interactions
Scalable spin squeezing from finite-temperature easy-plane magnetism
Routing and wavelength assignment in quantum key distribution networks: power control heuristics for quantum-classical multiplexing
Microwave-Optical Entanglement from Pulse-pumped Electro-optomechanics
Modular quantum processor with an all-to-all reconfigurable router
Impact of Parallel Gating on Gate Fidelities in Linear, Square, and Star Arrays of Noisy Flip-Flop Qubits
Purification and correction of quantum channels by commutation-derived quantum filters
Search for QCD axion dark matter with transmon qubits and quantum circuit
Estimate distillable entanglement and quantum capacity by squeezing useless entanglement
Cryogenic microwave link for quantum local area networks
Practical Trainable Temporal Postprocessor for Multistate Quantum Measurement
Qudit-Generalization of the Qubit Echo and Its Application to a Qutrit-Based Toffoli Gate
Improved Belief Propagation Decoding algorithms for surface codes
All-photonic GKP-qubit repeater using analog-information-assisted multiplexed entanglement ranking
Optical interferometer using two-mode squeezed light for enhanced chip-integrated quantum metrology
Certifiable Lower Bounds of Wigner Negativity Volume and Non-Gaussian Entanglement with Conditional Displacement Gates
Robust Hamiltonian Engineering for Interacting Qudit Systems
Charge and Flux Noise from Nonequilibrium Quasiparticle Energy Distributions in Superconducting Wires
Universal Euler-Cartan Circuits for Quantum Field Theories
Multi-Purpose Architecture for Fast Reset and Protective Readout of Superconducting Qubits
Quantum Thermodynamics of Open Quantum Systems: Nature of Thermal Fluctuations
Experimentally probing Landauer's principle in the quantum many-body regime
Engineering a multi-level bath for transmon with three-wave mixing and parametric drives
Redundant string symmetry-based error correction: Demonstrations on quantum devices
Dynamical quantum maps for single-qubit gates under universal non-Markovian noise
Scalable Parity Architecture With a Shuttling-Based Spin Qubit Processor
Persistent Topological Negativity in a High-Temperature Mixed-State
Optimally robust shortcuts to population inversion in cat-state qubits
Transmission of quantum information through quantum fields in curved spacetimes
To reset, or not to reset -- that is the question
Error budget of parametric resonance entangling gate with a tunable coupler
Optimizing quantum error correction protocols with erasure qubits
Surface Code with Imperfect Erasure Checks
Long-lived metastable-qubit memory
A Logarithmic Depth Quantum Carry-Lookahead Modulo $(2^n-1)$ Adder
Fabrication and characterization of low-loss Al/Si/Al parallel plate capacitors for superconducting quantum information applications
Error correction of transversal controlled-NOT gates for scalable surface code computation
Flux-pulse-assisted Readout of a Fluxonium Qubit
Wigner-negative states in the steady-state emission of a two-level system driven by squeezed light
Something from Nothing: A Theoretical Framework for Enhancing or Enabling Cooling of a Mechanical Resonator via the anti-Stokes or Stokes Interaction and Zero-Photon Detection
Weak force sensing based on optical parametric amplification in a cavity optomechanical system coupled in series with two oscillators
Magnon-squeezing-enhanced weak magnetic field sensing in cavity-magnon system
Measurement Induced Magic Resources
Squeezing-enhanced quantum sensing with quadratic optomechanics
Modeling phonon-mediated quasiparticle poisoning in superconducting qubit arrays
Improved Belief Propagation Decoding Algorithms for Surface Codes
Modular Architectures and Entanglement Schemes for Error-Corrected Distributed Quantum Computation
Measurement-Based Long-Range Entangling Gates in Constant Depth
Enhanced Superconducting Qubit Performance Through Ammonium Fluoride Etch
Microwave driven singlet-triplet qubits enabled by site-dependent g-tensors
Squeezing equivalence of quantum harmonic oscillators under different frequency modulations
Individually-addressed quantum gate interactions using dynamical decoupling
Tripartite quantum entanglement with squeezed optomechanics
Hybrid Oscillator-Qubit Quantum Processors: Instruction Set Architectures, Abstract Machine Models, and Applications
Quantum Transfer Learning for MNIST Classification Using a Hybrid Quantum-Classical Approach
Periodically poled thin-film lithium niobate ring Mach Zehnder coupling interferometer as an efficient quantum source of light
Quasiparticle Dynamics in a Superconducting Qubit Irradiated by a Localized Infrared Source
Optical readout of a superconducting qubit using a scalable piezo-optomechanical transducer
Bloch oscillations in a transmon embedded in a resonant electromagnetic environment
Kinetic inductance parametric converter
Flux-pulse-assisted readout of a fluxonium qubit
Error budget of a parametric resonance entangling gate with a tunable coupler
Kitaev chain in an alternating quantum dot-Andreev bound state array
Optimizing Pulse Shapes of an Echoed Conditional Displacement Gate in a Superconducting Bosonic System
Asymmetric EPR Steering in a Cavity-Magnon System Generated by a Squeezed Vacuum Field and an Optical Parametric Amplifier
Lumped-element two-section impedance-matched SNAIL parametric amplifier
Overcoming the Zero-Rate Hashing Bound with Holographic Quantum Error Correction
Stabilizer Entanglement Distillation and Efficient Fault-Tolerant Encoder
Leveraging Hamiltonian Simulation Techniques to Compile Operations on Bosonic Devices
Trade-offs between unitary and measurement induced spin squeezing in cavity QED
Precision Enhancement in Spatial Measurement by Introducing Squeezed Light into Weak Value Amplification
Characterizing the magnetic noise power spectrum of dark spins in diamond
Gate Operations for Superconducting Qubits and Non-Markovianity
Exchange control in a MOS double quantum dot made using a 300 mm wafer process
Period-doubling in the phase dynamics of a shunted HgTe quantum well Josephson junction
Quantum-limited generalized measurement for tunnel-coupled condensates
Tunneling of fluxons via a Josephson resonant level
Josephson tunnel junction arrays and Andreev weak links: linked by a single energy-phase relation
Vibrational Squeezing via Spin Inversion Pulses
Long-range Phase Coherence and Tunable Second Order ${\phi}_0$-Josephson Effect in a Dirac Semimetal $1T-PtTe_2$
The x+y Floquet code: A simple example for topological quantum computation in the path integral approach
Squeezed states of light after high-harmonic generation in excited atomic systems
Randomized Benchmarking Protocol for Dynamic Circuits
Demonstration of 3 V Programmable Josephson Junction Arrays Using Non-Integer-Multiple Logic
Hybrid entanglement and error correction in a scalable quantum network node
Constant-Overhead Magic State Distillation
A Multilevel Approach For Solving Large-Scale QUBO Problems With Noisy Hybrid Quantum Approximate Optimization
On the Constant Depth Implementation of Pauli Exponentials
A universal neutral-atom quantum computer with individual optical addressing and non-destructive readout
Modeling flux-quantizing Josephson junction circuits in Keysight ADS
Robust and Deterministic Preparation of Bosonic Logical States in a Trapped Ion
Modeling error correction with Lindblad dynamics and approximate channels
Demonstration of Fault-Tolerant Steane Quantum Error Correction
Fault-Tolerant Quantum Computation by Hybrid Qubits with Bosonic Cat Code and Single Photons
Individually Addressed Quantum Gate Interactions Using Dynamical Decoupling
Full-Permutation Dynamical Decoupling in Triple-Quantum-Dot Spin Qubits
Microwave Photon Detection at Parametric Criticality
Quantum Circuits with Multiterminal Josephson-Andreev Junctions
Native Two-Qubit Gates in Fixed-Coupling, Fixed-Frequency Transmons Beyond Cross-Resonance Interaction
Tunable Inductive Coupler for High-Fidelity Gates Between Fluxonium Qubits
On-Demand Driven Dissipation for Cavity Reset and Cooling
Extended quantum process tomography of logical operations on an encoded bosonic qubit
Semiconductor spin qubits
Entanglement spectrum of matchgate circuits with universal and non-universal resources
A controlled-squeeze gate in superconducting quantum circuits
Experiments with the 4D Surface Code on a QCCD Quantum Computer
Producing entangled photon pairs and quantum squeezed states in plasmas
Strong tunable spin-spin coupling with cavity-magnon criticality
Superconducting Qubits Above 20 GHz Operating over 200 mK
Virtual Channel Purification
Kerr nonlinearity and parametric amplification with an Al-InAs superconductor-semiconductor Josephson junction
Low Overhead Qutrit Magic State Distillation
Microwave signatures of topological superconductivity in planar Josephson junctions
Multiplet Supercurrents in a Josephson Circuit
Microwave Andreev bound state spectroscopy in a semiconductor-based Planar Josephson junction
Josephson effect in a Fibonacci quasicrystal
Fault-tolerant optical interconnects for neutral-atom arrays
The quantum uncertainty relations of quantum channels
Squeezed Light via Exciton-Phonon Cavity QED
Atomic non-classicality: A study of the anti-Jaynes-Cummings interaction
Enhancing quantum phase synchronization through squeezed-reservoir engineering
Angstrom-scale ion-beam engineering of ultrathin buried oxides for quantum and neuro-inspired computing
Quantum circuits with multiterminal Josephson-Andreev junctions
Mapping the topological proximity-induced gap of multiterminal Josephson junctions
Magnetically modulated superconductor-graphene-superconductor (SGS) Josephson junctions and their tunability
Number-operator-based inverse engineering technique in a two level system
Error threshold in active steering protocols for few-qubit systems
Bounding the systematic error in quantum error mitigation due to model violation
Beyond the parametric approximation: pump depletion, entanglement and squeezing in macroscopic down-conversion
Amplified Squeezed States: Analyzing Loss and Phase Noise
Passive decoy-state quantum secure direct communication with heralded single-photon source
Phase dependence of Kerr-based parametric amplification
Development of a Nb-based semiconductor-superconductor hybrid platform
Microwave Signatures of Topological Superconductivity in Planar Josephson Junctions
Calculating the energy profile of an enzymatic reaction on a quantum computer
Stabilizer codes for Heisenberg-limited many-body Hamiltonian estimation
Quantum Property Preservation
M2CS: A Microwave Measurement and Control System for Large-scale Superconducting Quantum Processors
High-performance multiqubit system with double-transmon couplers: Toward scalable superconducting quantum computers
Automated Synthesis of Fault-Tolerant State Preparation Circuits for Quantum Error Correction Codes
A Practical Introduction to Benchmarking and Characterization of Quantum Computers
Dynamic phases induced by two-level system defects on driven qubits
Error estimation of different schemes to measure spin-squeezing inequalities
Single-shot quantum error correction in intertwined toric codes
Optimized mechanical quadrature squeezing beyond the 3-dB limit via a gradient-descent algorithm
Simultaneous nonreciprocal photon blockade via directional parametric amplification
A General Framework for Gradient-Based Optimization of Superconducting Quantum Circuits using Qubit Discovery as a Case Study
High-distance codes with transversal Clifford and $T$-gates
Single-qubit rotations on a binomial code without ancillary qubits
Tutorial: projector approach to master equations for open quantum systems
Demonstration of Algorithmic Quantum Speedup for an Abelian Hidden Subgroup Problem
Benchmarking the algorithmic reach of a high-Q cavity qudit
Robust optimal control for a systematic error in the control amplitude of transmon qubits
Quantum error correction below the surface code threshold
Quantum state transfer between superconducting cavities via exchange-free interactions
Dynamic compensation for pump-induced frequency shift in Kerr-cat qubit initialization
Bosonic Quantum Error Correction with Neutral Atoms in Optical Dipole Traps
Suppressing Correlated Noise in Quantum Computers via Context-Aware Compiling
Flux-tunable Josephson effect in a four-terminal junction
Possible Fano effect and suppression of Andreev reflection in La$_3$Ni$_2$O$_7$
A 4–8 GHz kinetic inductance traveling-wave parametric amplifier using four-wave mixing with near quantum-limited noise performance
Realtime Compilation for Continuous Angle Quantum Error Correction Architectures
Squeezing light to get non-classical work in quantum engines
Engineering a Josephson junction chain for the simulation of the clock model
Quantum sensing in Kerr parametric oscillators
Squeezed state protection of fine structure in "Poor Man's Majorana" via quantum spin coupling
Initial Correlations and Time-Retarded Noise in Dynamical Decoupling Schemes for Superconducting Qubits
Artificially intelligent Maxwell's demon for optimal control of open quantum systems
Comprehensive explanation of ZZ coupling in superconducting qubits
Beating the Ramsey limit on sensing with deterministic qubit control
Theoretical study of superconducting diode effect in planar $T_{d}-MoTe_{2}$ Josephson junctions
Squeezed Thermal Reservoir Engineering via Linear Interactions
Circuit QED Emission Spectra in the Ultrastrong Coupling Regime: How They Differ from Cavity QED
Long-Range $ZZ$ Interaction via Resonator-Induced Phase in Superconducting Qubits
Signatures of a Spin-Active Interface and Locally Enhanced Zeeman field in a Superconductor-Chiral Material Heterostructure
A small footprint travelling-wave parametric amplifier with a high Signal-to-Noise Ratio improvement in a wide band
Squeezed dual-comb spectroscopy
Randomized semi-quantum matrix processing
Resource state generation in a hybrid matter-photon quantum information processor
Modeling flux tunability in Josephson Traveling Wave Parametric Amplifiers with an open-source frequency-domain simulator
Nonlinear dynamical Casimir effect and Unruh entanglement in waveguide QED with parametrically modulated coupling
Josephson Traveling Wave Parametric Amplifiers with Plasma oscillation phase-matching
Tight inequalities for nonclassicality of measurement statistics
Overcoming the Coherence Time Barrier in Quantum Machine Learning on Temporal Data
Reducing the error rate of a superconducting logical qubit using analog readout information
Non-Hermitian multiterminal phase-biased Josephson junctions
Learning to Synthesize Fault-Tolerant Quantum Circuits by Diagonalization
Type-Based Verification of Connectivity Constraints in Lattice Surgery
On encoded quantum gate generation by iterative Lyapunov-based methods
Characterizing Noise of Driven Controlled Field Using the Central Spin Model
An almost-linear time decoding algorithm for quantum LDPC codes under circuit-level noise
Kerr magnon assisted asymptotic stationary photon-phonon squeezing
An NV- center in magnesium oxide as a spin qubit for hybrid quantum technologies
Beyond the Carnot Limit in the Internal Cycles of a Quantum Heat Engine under Finite Heat Reservoirs
Entanglement generation via single-qubit rotations in a torn Hilbert space
A Superfluid Helium Micromechanical Quantum Device as an Artificial Atom
Effective Distance of Higher Dimensional HGPs and Weight-Reduced Quantum LDPC Codes
The exact lower bound of CNOT-complexity for fault-tolerant quantum Fourier transform
Thermometry Based on a Superconducting Qubit
Blochnium-Based Josephson Junction Parametric Amplifiers: Superior Tunability and Linearity
Heisenberg-limit spin squeezing with spin Bogoliubov Hamiltonian
Semiquantum private comparison based on Bell states without quantum measurements from the classical user
Disorder-tunable entanglement at infinite temperature
Nonlinearity of the Fidelity in Open Qudit Systems: Gate and Noise Dependence in High-dimensional Quantum Computing
Fast $ZZ$-free entangling gates for superconducting qubits assisted by a driven resonator
Ballistic Andreev interferometers
Progress in Trapped-Ion Quantum Simulation
High Energy Physics from Low Energy Physics
Generating arbitrary superpositions of nonclassical quantum harmonic oscillator states
Phonon-mediated quantum gates in trapped ions coupled to an ultracold atomic gas
Hardware-Assisted Parameterized Circuit Execution
Hybrid Oscillator-Qubit Quantum Processors: Simulating Fermions, Bosons, and Gauge Fields
Role of anisotropic confining potential and elliptical driving in dynamics of a Ge hole qubit
Squeezing Enhancement in Lossy Multi-Path Atom Interferometers
Geometrical Approach to Logical Qubit Fidelities of Neutral Atom CSS Codes
Lightcone shading for classically accelerated quantum error mitigation
CMOS compatibility of semiconductor spin qubits
Asymmetric Bidirectional Quantum Teleportation: Arbitrary bi-modal Information State
Quantum-enhanced dark matter detection with in-cavity control: mitigating the Rayleigh curse
Quantum error correction of motional dephasing using optical dressing
Fast multiplexed superconducting qubit readout with intrinsic Purcell filtering
Platonic dynamical decoupling sequences for qudits
Towards Distributed Quantum Error Correction for Distributed Quantum Computing
Noise Suppression via Coherent Quantum Feedback: a Schr{\"o}dinger Picture Approach
Universal Quantum Gate Set for Gottesman-Kitaev-Preskill Logical Qubits
Preparing Schr\"odinger cat states in a microwave cavity using a neural network
Hardware-Efficient Fault Tolerant Quantum Computing with Bosonic Grid States in Superconducting Circuits
Implementing a synthetic magnetic vector potential in a 2D superconducting qubit array
Equilibrium Parametric Amplification in Raman-Cavity Hybrids
Planar Hall supercurrent and {\delta}{\phi}-shift in the topological Josephson junction
Scalable on-chip multiplexing of silicon single and double quantum dots
Resource-efficient context-aware dynamical decoupling embedding for arbitrary large-scale quantum algorithms
Transmon qubit modeling and characterization for Dark Matter search
Accelerating Dissipative State Preparation with Adaptive Open Quantum Dynamics
Efficiently catching entangled microwave photons from a quantum transducer with shaped optical pumps
Nonreciprocal tripartite entanglement and asymmetric Einstein-Podolsky-Rosen steering via directional quantum squeezing
Experimental investigation of coherent ergotropy in a single spin system
Coherent Control of a Long-Lived Nuclear Memory Spin in a Germanium-Vacancy Multi-Qubit Node
Tailoring the light-matter interaction for high-fidelity holonomic gate operations in multiple systems
Deterministic generation of a 20-qubit two-dimensional photonic cluster state
Tantalum thin films sputtered on silicon and on different seed layers: material characterization and coplanar waveguide resonator performance
Concomitant Entanglement and Control Criticality Driven by Collective Measurements
Optical Gottesman-Kitaev-Preskill Qubit Generation via Approximate Squeezed Schr\"odinger Cat State Breeding
Thermalization Dynamics of Entanglement and non-Locality of Filtered Two-Mode Squeezed States
Development of TiN/AlN-based superconducting qubit components
High-contrast ZZ interaction using superconducting qubits with opposite-sign anharmonicity
Suppression of static ZZ interaction in an all-transmon quantum processor
Observation of topological transitions associated with a Weyl exceptional ring
Quasiparticle trapping in quench dynamics of superconductor/quantum dot/ superconductor Josephson junctions
Enhancement of topological regime in elongated Josephson junctions
Long distance spin shuttling enabled by few-parameter velocity optimization
In-situ tunable interaction with an invertible sign between a fluxonium and a post cavity
Contrasting Statistical Phase Estimation with the Variational Quantum Eigensolver in the era of Early Fault Tolerant Quantum Computation
Photon pair generation via down-conversion in III-V semiconductor microrings: modal dispersion and quasi-phase matching
Experimental error suppression in Cross-Resonance gates via multi-derivative pulse shaping
Useful autonomous quantum machines
Enhancing Quantum Machine Learning: The Power of Non-Linear Optical Reproducing Kernels
CompressedMediQ: Hybrid Quantum Machine Learning Pipeline for High-Dimentional Neuroimaging Data
Remote Entangling Gates for Spin Qubits in Quantum Dots using an Offset-Charge-Sensitive Transmon Coupler
Control of solid-state nuclear spin qubits using an electron spin-1/2
Boson sampling with self-generation of squeezing via interaction of photons and atoms
Frequency-dependent squeezing via Einstein-Podolsky-Rosen entanglement based on silicon nitride microring resonators
Heat current and fluctuations between a dissipative qubit and a monitor under continuous measurement and feedback
Mode hitching in traveling-wave optical parametric amplification
Disentangling the Impact of Quasiparticles and Two-Level Systems on the Statistics of Superconducting Qubit Lifetime
Ion-mediated interaction and controlled phase gate operation between two atomic qubits
Quantum Information Scrambling, Chaos, Sensitivity, and Emergent State Designs
Intracavity squeezing for Kerr QND Measurement scheme
Harnessing Nth Root Gates for Energy Storage
An explicit tensor notation for quantum computing
Resource-efficient photonic quantum computation with high-dimensional cluster states
Toolbox for nonreciprocal dispersive models in circuit QED
Nonequilibrium cotunneling in quantum dot Josephson junctions
Pursuing high-fidelity control of spin qubits in natural Si/SiGe quantum dot
Observation of Interface Piezoelectricity in Superconducting Devices on Silicon
Overcoming the Standard Quantum Limit with Electro-Optomechanical Hybrid System for Enhanced Force Sensing
Quantum-limited optical lever measurement of a torsion oscillator
Adaptive Phase Estimation with Squeezed Vacuum Approaching the Quantum Limit
Covert Quantum Communication Over Optical Channels
Safeguarding Oscillators and Qudits with Distributed Two-Mode Squeezing
Improving threshold for fault-tolerant color code quantum computing by flagged weight optimization
Error correction of transversal CNOT gates for scalable surface code computation
Improving Threshold for Fault-Tolerant Color-Code Quantum Computing by Flagged Weight Optimization
Cavity-Enhanced Optical Manipulation of Antiferromagnetic Magnon-Pairs
Advanced CMOS manufacturing of superconducting qubits on 300 mm wafers
Topological argument for robustness of coherent states in quantum optics
Qubit-State Purity Oscillations from Anisotropic Transverse Noise
Experimental sample-efficient quantum state tomography via parallel measurements
Optimal sensing of photon addition and subtraction on nonclassical light
Entanglement-enhanced quantum sensing via optimal global control
Industrial 300$\,$mm wafer processed spin qubits in natural silicon/silicon-germanium
CompressedMediQ: Hybrid Quantum Machine Learning Pipeline for High-Dimensional Neuroimaging Data
Squeezing the quantum noise of a gravitational-wave detector below the standard quantum limit
Entanglemons: Cross-platform protected qubits from entanglement
Hardware-efficient quantum error correction using concatenated bosonic qubits
Generation of strong mechanical squeezing through the joint effect of two-tone driving and parametric pumping
Quantum heat engine based on quantum interferometry: the SU(1,1) Otto cycle
Entanglement, Spin Squeezing and Quantum Sensing in a Spin-5/2 Heisenberg Molecular Iron(III) Triangle
Efficient fault-tolerant code switching via one-way transversal CNOT gates
Improved Electron-Nuclear Quantum Gates for Spin Sensing and Control
A fault-tolerant pairwise measurement-based code on eight qubits
Squeezing the quantum noise of a gravitational-wavedetector below the standard quantum limit
Nonreciprocal Equilibrium 4$\pi$-Periodic Josephson Effect from Poor Man's Majorana Zero Modes
Flag Proxy Networks: Tackling the Architectural, Scheduling, and Decoding Obstacles of Quantum LDPC codes
Defending crosstalk-mediated quantum attacks using dynamical decoupling
Quantum Error Correction of Qudits Beyond Break-even
Synthesis of Energy-Conserving Quantum Circuits with XY interaction
Quantum computer-enabled receivers for optical communication
Extended-Josephson-junction qubit system
Boosting the generation rate of squeezed single-photon states by generalized photon subtraction
Fluctuation instabilities via internal resonance in a multimode membrane as a mechanism for frequency combs
Fast Virtual Gate Extraction For Silicon Quantum Dot Devices
Effect of Etching Methods on Dielectric Losses in Transmons
A real-time, scalable, fast and highly resource efficient decoder for a quantum computer
Concurrent spin squeezing and light squeezing in an atomic ensemble
Efficient and precise quantum simulation of ultra-relativistic quark-nucleus scattering
Quantum error correction-inspired multiparameter quantum metrology
A Hybrid Quantum Neural Network for Split Learning
Fast unconditional reset and leakage reduction in fixed-frequency transmon qubits
Scalable quantum eraser for superconducting integrated circuits
Squeezing Quantum States in Three-Dimensional Twisted Crystals
Non-collapsing electric readout of arbitrary Andreev qubits
Preserving phase coherence and linearity in cat qubits with exponential bit-flip suppression
Observation of Transient Trion Induced by Ultrafast Charge Transfer in Graphene/MoS2 Heterostructure
Spin-Dependent Signatures of Majorana Vortex Fusion within Planar Josephson Junctions
Direct Microwave Spectroscopy of Andreev Bound States in Planar $\mathrm{Ge}$ Josephson Junctions
Self-consistent Keldysh-Usadel formalism unravels crossed Andreev reflection
Effects of Systematic Error on Quantum-Enhanced Atom Interferometry
Protected Fluxonium Control with Sub-harmonic Parametric Driving
High-performance conditional-driving gate for Kerr parametric oscillator qubits
Deployed quantum link characterization via Bayesian ancilla-assisted process tomography
The quantum trajectory sensing problem and its solution
Systematic construction of multi-controlled Pauli gate decompositions with optimal $T$-count
S-QGPU: Shared Quantum Gate Processing Unit for Distributed Quantum Computing
Optimized continuous dynamical decoupling via differential geometry and machine learning
Enhanced scattering from an almost-periodic optical temporal slab
Pairing type symmetry in cuprate superconductors
IBM Quantum Computers: Evolution, Performance, and Future Directions
Flux-pump induced degradation of $T_1$ for dissipative cat qubits
Thermalization of a flexible microwave stripline measured by a superconducting qubit
MaxSAT decoders for arbitrary CSS codes
Circuit QED Spectra in the Ultrastrong Coupling Regime: How They Differ from Cavity QED
Buried Dirac points in Quantum Spin Hall Insulators: Implications for edge transport and Majorana Kramer Pairs
Matchgate hierarchy: A Clifford-like hierarchy for deterministic gate teleportation in matchgate circuits
Simple Construction of Qudit Floquet Codes on a Family of Lattices
Low-overhead fault-tolerant quantum computation by gauging logical operators
Variational Graphical Quantum Error Correction Codes: adjustable codes from topological insights
Photon-mediated long-range coupling of two Andreev pair qubits
Machine Learning Aided Scattering Mitigation in a Quantum System
GTQCP: Greedy Topology-Aware Quantum Circuit Partitioning
Decoherence of surface phonons in a quantum acoustic system
LEGO: QEC Decoding System Architecture for Dynamic Circuits
Foundational Issues in Dynamical Casimir Effect and Analogue Features in Cosmological Particle Creation
Combined Dissipative and Hamiltonian Confinement of Cat Qubits
Characterization of entanglement on superconducting quantum computers of up to 414 qubits
Thermodynamics of the quantum Mpemba effect
Implementing Josephson Junction spectroscopy in a scanning tunneling microscope
High-fidelity spin readout via the double latching mechanism
Simultaneous Multiparty Quantum Teleportation Supervised by a Controller
Geometry and Entanglement of Super-Qubit Quantum States
STIRAP-Inspired Robust Gates for a Superconducting Dual-Rail Qubit
Single-shot preparation of hypergraph product codes via dimension jump
Demonstrating real-time and low-latency quantum error correction with superconducting qubits
Fundamental principles and applications of nonlinear optical phenomena in classical and quantum electrodynamics
Fast, tunable, high fidelity cZ-gates between superconducting qubits with parametric microwave control of ZZ-coupling
Resisting high-energy impact events through gap engineering in superconducting qubit arrays
Josephson junctions, superconducting circuits, and qubit for quantum technologies
Gatemonium: A Voltage-Tunable Fluxonium
Entangled photon-pair emission in circuit QED from a Cooper pair splitter
Experimental realization of direct entangling gates between dual-type qubits
On the Computational Power of QAC0 with Barely Superlinear Ancillae
Tailoring fusion-based photonic quantum computing schemes to quantum emitters
Entanglement, information and non-equilibrium phase transitions in long-range open quantum Ising chains
Exchange-Only Spin-Orbit Qubits in Silicon and Germanium
Crystallinity in Niobium oxides: A pathway to mitigate Two-Level System Defects in Niobium 3D Resonator for quantum applications
Quantum Vector Signal Analyzer: Wideband Electric Field Sensing via Motional Raman Transitions
Optical and mechanical squeezing with coherent feedback control beyond the resolved-sideband regime
Epitaxial aluminum layer on antimonide heterostructures for exploring Josephson junction effects
Creation of two-dimensional circular motion of charge qubit
Drag conductance induced by neutral-mode localization in fractional quantum Hall junctions
Toward hybrid quantum simulations with qubits and qumodes on trapped-ion platforms
Geometric structure and transversal logic of quantum Reed-Muller codes
Microwave-activated two-qubit gates for fixed-coupling and fixed-frequency transmon qubits
Flat-band (de)localization emulated with a superconducting qubit array
Absence of "fractional ac Josephson effect" in superconducting junctions
Driving a Josephson Traveling Wave Parametric Amplifier into chaos: effects of a non-sinusoidal current-phase relation
Casimir effect in Josephson junctions
Conditional Motional Squeezing of an Optomechanical Oscillator Approaching the Quantum Regime
High-Coherence Quantum Acoustics with Planar Superconducting Qubits
Application of zero-noise extrapolation-based quantum error mitigation to a silicon spin qubit
Complementing the transmon by integrating a geometric shunt inductor
Individual solid-state nuclear spin qubits with coherence exceeding seconds
Nonlocality under Jaynes-Cummings evolution: beyond pseudospin operators
Tachyonic and parametric instabilities in an extended bosonic Josephson Junction
Microwave photon detection at parametric criticality
Long-range-enhanced surface codes
Simulating Heavy-Hex Transverse Field Ising Model Magnetization Dynamics Using Programmable Quantum Annealers
Spectroscopic measurements and models of energy deposition in the substrate of quantum circuits by natural ionizing radiation
Non-equilibrium cotunneling in interacting Josephson junctions
Robust spontaneous parametric down-conversion via detuning modulated composite segments designs
Quantum-optical sensing and target detection
Generating entanglement of two acoustic modes by driving the qubit in circuit quantum acoustodynamics system
Topological anomalous Floquet photon pump
Nonequilibrium energy transport and nonclassical correlations of photons in a two-mode circuit quantum electrodynamic system
Operating semiconductor quantum processors with hopping spins
Agnostic Process Tomography
Superconducting Quantum Simulation for Many-Body Physics beyond Equilibrium
Dynamical weight reduction of Pauli measurements
Quantum subspace verification for error correction codes
Modeling Short-Range Microwave Networks to Scale Superconducting Quantum Computation
Systematic input scheme of many-boson Hamiltonians with applications to the two-dimensional $\phi ^4$ theory
Superconducting flux qubit with ferromagnetic Josephson $\pi$-junction operating at zero magnetic field
Observation of Discrete Charge States of a Coherent Two-Level System in a Superconducting Qubit
Using Bifluxon Tunneling to Protect the Fluxonium Qubit
Interedge backscattering in time-reversal symmetric quantum spin Hall Josephson junctions
Autonomous Stabilization of Floquet States Using Static Dissipation
Single-shot and measurement-based quantum error correction via fault complexes
Measurement-free, scalable and fault-tolerant universal quantum computing
Co-designing Transmon devices for control with simple pulses
The Optimization of Flux Trajectories for the Adiabatic Controlled-Z Gate on Split-Tunable Transmons
Suppressed paramagnetism in amorphous Ta$_2$O$_{5-x}$ oxides and its link to superconducting qubit performance
Superconducting Diode Effect in Quantum Spin Hall Insulator-based Josephson Junctions
Experimental protocol for observing single quantum many-body scars with transmon qubits
Simulating electronic structure on bosonic quantum computers
High Precision Fault-Tolerant Quantum Circuit Synthesis by Diagonalization using Reinforcement Learning
Dissipatively stabilized squeezed-cat qubits and their application in thermometry
LUCI in the Surface Code with Dropouts
Enhancing entanglement in nano-mechanical oscillators via hybrid optomechanical systems
Preparing Spin Squeezed States via Adaptive Genetic Algorithm
Engineering the Environment of a Superconducting Qubit with an Artificial Giant Atom
Geometric phase for mixed squeezed-coherent states
Reservoir-engineered spin squeezing in quantum hybrid solid-state platforms
Cryogenic Control and Readout Integrated Circuits for Solid-State Quantum Computing
Strong photon coupling to high-frequency antiferromagnetic magnons via topological surface states
Transport properties and quantum phase transitions in one-dimensional superconductor-ferromagnetic insulator heterostructures
A 300 mm foundry silicon spin qubit unit cell exceeding 99% fidelity in all operations
Semiconductor Circuits for Quantum Computing with Electronic Wave Packets
Hardness results for decoding the surface code with Pauli noise
Error-Mitigated Quantum Random Access Memory
Generating Fock-state superpositions from coherent states by selective measurement
Limits of Noisy Quantum Metrology with Restricted Quantum Controls
Probing the Berezinskii-Kosterlitz-Thouless vortex unbinding transition in two-dimensional superconductors using local noise magnetometry
Quantum Convolutional Neural Network: A Hybrid Quantum-Classical Approach for Iris Dataset Classification
Bosonic Mpemba effect with non-classical states of light
Measuring error rates of mid-circuit measurements
TE-PAI: Exact Time Evolution by Sampling Random Circuits
Engineering Fault-tolerant Bosonic Codes with Quantum Lattice Gates
Semiclassical origin of suppressed quantum chaos in Rydberg chains
Limits of noisy quantum metrology with restricted quantum controls
Phase sensitivity for an SU(1,1) interferometer via multiphoton subtraction at the output port
Concurrent Spin Squeezing and Light Squeezing in an Atomic Ensemble
Measurement-Induced Transmon Ionization
Impurity States in D-wave Superconductors
Towards the Scalable Fabrication of thin-film NbTiN CPW KTWPA
Hybrid Quantum-Classical Reinforcement Learning in Latent Observation Spaces
Enhanced Gaussian interferometric power, entanglement and Gaussian quantum steering in magnonics system with squeezed light
Generation of Structured Light and Controlled-NOT Gate in Microwave Regime
Suppressing chaos with mixed superconducting qubit devices
Practical implementation of a single-qubit rotation algorithm
Multi-qubit entanglement swapping with squeezed modes
Ultrafast single-photon detection using nanophotonic parametric amplifiers
Quantum circuit synthesis via a random combinatorial search
A complete continuous-variable quantum computation architecture based on the 2D spatiotemporal cluster state
A Superconducting Single-Atom Phonon Laser
Crosstalk-robust quantum control in multimode bosonic systems
Pushing the Boundaries: Interferometric Mass Photometry at the Quantum Limit of Sensitivity
Quantum Graph-State Synthesis with SAT
Crosstalk-Robust Quantum Control in Multimode Bosonic Systems
The Floquet Fluxonium Molecule: Driving Down Dephasing in Coupled Superconducting Qubits
Superconductive coupling and Josephson diode effect in selectively-grown topological insulator based three-terminal junctions
Characterizing entangled state update in different reference frames with weak measurements
Characterization of Noise using variants of Unitarity Randomized Benchmarking
All-optical measurement-device-free feedforward enabling ultra-fast quantum information processing
Of gyrators and anyons
Resonator-mediated quantum gate between distant charge qubits
Parametric longitudinal coupling of a semiconductor charge qubit and a RF resonator
Entanglement-enhanced AC magnetometry in the presence of Markovian noises
Photonic Quantum Receiver Attaining the Helstrom Bound
Adding or Subtracting a single Photon is the same for Pure Squeezed Vacuum States
From spin squeezing to fast state discrimination
Low-overhead quantum error correction codes with a cyclic topology
Quantum Locking of Intrinsic Spin Squeezed State in Earth-field-range Magnetometry
Spin phase regulated spin Josephson supercurrent in topological superconductor
Kinetic Inductance and nonlinearity of MgB2 Films at 4K
Mapping of a many-qubit state onto an oscillator using controlled displacements
Statistical mechanical mapping and maximum-likelihood thresholds for the surface code under generic single-qubit coherent errors
Quantum optimal control of superconducting qubits based on machine-learning characterization
Quantum enhanced real-time sensing of protein binding process