SearcharxivSearch

arXiv subjects

Kevin O'Brien

Publications and source records attributed to Kevin O'Brien.

14 recordsLinked to original sources

GPT-4 Generated Narratives of Life Events using a Structured Narrative Prompt: A Validation Study

Large Language Models (LLMs) play a pivotal role in generating vast arrays of narratives, facilitating a systematic exploration of their effectiveness for communicating life events in narrative form. In this study, we employ a zero-shot structured narrative prompt to generate 24,000 narratives using OpenAI's GPT-4. From this dataset, we manually classify 2,880 narratives and evaluate their validity in conveying birth, death, hiring, and firing events. Remarkably, 87.43% of the narratives sufficiently convey the intention of the structured prompt. To automate the identification of valid and invalid narratives, we train and validate nine Machine Learning models on the classified datasets. Leveraging these models, we extend our analysis to predict the classifications of the remaining 21,120 narratives. All the ML models excelled at classifying valid narratives as valid, but experienced challenges at simultaneously classifying invalid narratives as invalid. Our findings not only advance the study of LLM capabilities, limitations, and validity but also offer practical insights for narrative generation and natural language processing applications.

cs.CL

Compiling ONNX Neural Network Models Using MLIR

Deep neural network models are becoming increasingly popular and have been used in various tasks such as computer vision, speech recognition, and natural language processing. Machine learning models are commonly trained in a resource-rich environment and then deployed in a distinct environment such as high availability machines or edge devices. To assist the portability of models, the open-source community has proposed the Open Neural Network Exchange (ONNX) standard. In this paper, we present a high-level, preliminary report on our onnx-mlir compiler, which generates code for the inference of deep neural network models described in the ONNX format. Onnx-mlir is an open-source compiler implemented using the Multi-Level Intermediate Representation (MLIR) infrastructure recently integrated in the LLVM project. Onnx-mlir relies on the MLIR concept of dialects to implement its functionality. We propose here two new dialects: (1) an ONNX specific dialect that encodes the ONNX standard semantics, and (2) a loop-based dialect to provide for a common lowering point for all ONNX dialect operations. Each intermediate representation facilitates its own characteristic set of graph-level and loop-based optimizations respectively. We illustrate our approach by following several models through the proposed representations and we include some early optimization work and performance results.

cs.PL

Thermodynamic classification of three-dimensional Kitaev spin liquids

In the field of frustrated magnetism, Kitaev models provide a unique framework to study the phenomena of spin fractionalization and emergent lattice gauge theories in two and three spatial dimensions. Their ground states are quantum spin liquids, which can typically be described in terms of a Majorana band structure and an ordering of the underlying $\mathbb{Z}_2$ gauge structure. Here we provide a comprehensive classification of the "gauge physics" of a family of elementary three-dimensional Kitaev models, discussing how their thermodynamics and ground state order depends on the underlying lattice geometry. Using large-scale, sign-free quantum Monte Carlo simulations we show that the ground-state gauge order can generally be understood in terms of the length of elementary plaquettes -- a result which extends the applicability of Lieb's theorem to lattice geometries beyond its original scope. At finite temperatures, the proliferation of (gapped) vison excitations destroys the gauge order at a critical temperature scale, which we show to correlate with the size of vison gap for the family of three-dimensional Kitaev models. We also discuss two notable exceptions where the lattice structure gives rise to "gauge frustration" or intertwines the gauge ordering with time-reversal symmetry breaking. In a more general context, the thermodynamic gauge transitions in such 3D Kitaev models are one of the most natural settings for phase transitions beyond the standard Landau-Ginzburg-Wilson paradigm.

cond-mat.str-el

Quantum metamaterial for nondestructive microwave photon counting

Detecting traveling photons is an essential primitive for many quantum information processing tasks. We introduce a single-photon detector design operating in the microwave domain, based on a weakly nonlinear metamaterial where the nonlinearity is provided by a large number of Josephson junctions. The combination of weak nonlinearity and large spatial extent circumvents well-known obstacles limiting approaches based on a localized Kerr medium. Using numerical many-body simulations we show that the single-photon detection fidelity increases with the length of the metamaterial to approach one at experimentally realistic lengths. A remarkable feature of the detector is that the metamaterial approach allows for a large detection bandwidth. In stark contrast to conventional photon detectors operating in the optical domain, the photon is not destroyed by the detection and the photon wavepacket is minimally disturbed. The detector design we introduce offers new possibilities for quantum information processing, quantum optics and metrology in the microwave frequency domain.

quant-ph

Chiral spin liquids with crystalline $\mathbb{Z}_2$ gauge order in a three-dimensional Kitaev model

Chiral spin liquids (CSLs) are time-reversal symmetry breaking ground states of frustrated quantum magnets that show no long-range magnetic ordering, but instead exhibit topological order and fractional excitations. Their realization in simple and tractable microscopic models has, however, remained an open challenge for almost two decades until it was realized that Kitaev models on lattices with odd-length loops are natural hosts for such states, even in the absence of a time-reversal symmetry breaking magnetic field. Here we report on the formation of CSLs in a three-dimensional Kitaev model, which differ from their widely studied two-dimensional counterparts, namely, they exhibit a crystalline ordering of the $\mathbb{Z}_2$ gauge fluxes and thereby break some of the underlying lattice symmetries. We study the formation of these unconventional CSLs via extensive quantum Monte Carlo simulations and demonstrate that they are separated from the featureless paramagnet at high temperatures by a single first-order transition at which both time-reversal and lattice symmetries are simultaneously broken. Using variational approaches for the ground state, we explore the effect of varying the Kitaev couplings and find at least five distinct CSL phases, all of which possess crystalline ordering of the $\mathbb{Z}_2$ gauge fluxes. For some of these phases, the complementary itinerant Majorana fermions exhibit gapless band structures with topological features such as Weyl nodes or nodal lines in the bulk and Fermi arc or drumhead surface states.

cond-mat.str-el

Microwave Packaging for Superconducting Qubits

Over the past two decades, the performance of superconducting quantum circuits has tremendously improved. The progress of superconducting qubits enabled a new industry branch to emerge from global technology enterprises to quantum computing startups. Here, an overview of superconducting quantum circuit microwave control is presented. Furthermore, we discuss one of the persistent engineering challenges in the field, how to control the electromagnetic environment of increasingly complex superconducting circuits such that they are simultaneously protected and efficiently controllable.

quant-ph

Quantum Sensing for High Energy Physics

Report of the first workshop to identify approaches and techniques in the domain of quantum sensing that can be utilized by future High Energy Physics applications to further the scientific goals of High Energy Physics.

hep-ex

Implementing implicit OpenMP data sharing on GPUs

OpenMP is a shared memory programming model which supports the offloading of target regions to accelerators such as NVIDIA GPUs. The implementation in Clang/LLVM aims to deliver a generic GPU compilation toolchain that supports both the native CUDA C/C++ and the OpenMP device offloading models. There are situations where the semantics of OpenMP and those of CUDA diverge. One such example is the policy for implicitly handling local variables. In CUDA, local variables are implicitly mapped to thread local memory and thus become private to a CUDA thread. In OpenMP, due to semantics that allow the nesting of regions executed by different numbers of threads, variables need to be implicitly \emph{shared} among the threads of a contention group. In this paper we introduce a re-design of the OpenMP device data sharing infrastructure that is responsible for the implicit sharing of local variables in the Clang/LLVM toolchain. We introduce a new data sharing infrastructure that lowers implicitly shared variables to the shared memory of the GPU. We measure the amount of shared memory used by our scheme in cases that involve scalar variables and statically allocated arrays. The evaluation is carried out by offloading to K40 and P100 NVIDIA GPUs. For scalar variables the pressure on shared memory is relatively low, under 26\% of shared memory utilization for the K40, and does not negatively impact occupancy. The limiting occupancy factor in that case is register pressure. The data sharing scheme offers the users a simple memory model for controlling the implicit allocation of device shared memory.

cs.PL

Classification of gapless Z2 spin liquids in three-dimensional Kitaev models

Frustrated quantum magnets can harbor unconventional spin liquid ground states in which the elementary magnetic moments fractionalize into new emergent degrees of freedom. While the fractionalization of quantum numbers is one of the recurring themes in modern condensed matter physics, it often remains a challenge to devise a controlled analytical framework tracking this phenomenon. A notable exception is the exactly solvable Kitaev model, in which spin degrees of freedom fractionalize into Majorana fermions and a Z2 gauge field. Here we discuss the physics of fractionalization in three-dimensional Kitaev models and demonstrate that the itinerant Majorana fermions generically form a (semi)metal which, depending on the underlying lattice structure, exhibits Majorana Fermi surfaces, nodal lines or topologically protected Weyl nodes. We show that the nature of these Majorana metals can be deduced from an elementary symmetry analysis of the projective time-reversal and inversion symmetries for a given lattice. This allows us to comprehensively classify the gapless spin liquids of Kitaev models for the most elementary tricoordinated lattices in three dimensions. We further expand this classification by addressing the effects of time-reversal symmetry breaking and additional interactions.

cond-mat.str-el

Magnetic hyperbolic optical metamaterials

Strongly anisotropic media where the principal components of electric permittivity or magnetic permeability tensors have opposite signs are termed as hyperbolic media. Such media support propagating electromagnetic waves with extremely large wavevectors exhibiting unique optical properties. However in all artificial and natural optical materials studied to date, the hyperbolic dispersion originates solely from the electric response. This restricts material functionality to one polarization of light and inhibits free-space impedance matching. Such restrictions can be overcome in media having components of opposite signs for both electric and magnetic tensors. Here we present the experimental demonstration of the magnetic hyperbolic dispersion in three-dimensional metamaterials. We measure metamaterial isofrequecy contours and reveal the topological phase transition between the elliptic and hyperbolic dispersion. In the hyperbolic regime, we demonstrate the strong enhancement of thermal emission, which becomes directional, coherent and polarized. Our findings show the possibilities for realizing efficient impedance-matched hyperbolic media for unpolarized light.

physics.optics

Experimental Test of Hyper-Complex Quantum Theories

In standard quantum mechanics, complex numbers are used to describe the wavefunction. Although complex numbers have proven sufficient to predict the results of existing experiments, there is no apparent theoretical reason to choose them over real numbers or generalizations of complex numbers, i.e. hyper-complex numbers. Experiments performed to date have proven that real numbers are insufficient, but whether or not hyper-complex numbers are required remains an open question. Quantum theories based on hyper-complex numbers are one example of a post-quantum theory, which must be put on a firm experimental foundation. Here we experimentally probe hyper-complex quantum theories, by studying one of their deviations from complex quantum theory: the non-commutativity of phases. We do so by passing single photons through a Sagnac interferometer containing two physically different phases, having refractive indices of opposite sign. By showing that the phases commute with high precision, we place limits on a particular prediction of hyper-complex quantum theories.

quant-ph

Weyl spin liquids

The fractionalization of quantum numbers in interacting quantum-many body systems is a central motif in condensed matter physics with prominent examples including the fractionalization of the electron in quantum Hall liquids or the emergence of magnetic monopoles in spin-ice materials. Here we discuss the fractionalization of magnetic moments in three-dimensional Kitaev models into Majorana fermions (and a $\mathbb Z_2$ gauge field) and their emergent collective behavior. We analytically demonstrate that the Majorana fermions form a Weyl superconductor for the Kitaev model on the recently synthesized hyperhoneycomb structure of $β$-Li$_2$IrO$_3$ when applying a magnetic field. We characterize the topologically protected bulk and surface features of this state, which we dub a Weyl spin liquid, including thermodynamic and transport signatures.

cond-mat.str-el

Resonantly phase-matched Josephson junction traveling wave parametric amplifier

We develop a technique to overcome phase-mismatch in Josephson-junction traveling wave parametric amplifiers in order to achieve high gain over a broad bandwidth. Using "resonant phase matching," we design a compact superconducting device consisting of a transmission line with subwavelength resonant inclusions that simultaneously achieves a gain of 20 dB, an instantaneous bandwidth of 3 GHz, and a saturation power of -98 dBm. Such an amplifier is well-suited to cryogenic broadband microwave measurements such as the multiplexed readout of quantum coherent circuits based on superconducting, semiconducting, or nano-mechanical elements as well as traditional astronomical detectors.

cond-mat.supr-con

Probing Excitonic Dark States in Single-layer Tungsten Disulfide

Transition metal dichalcogenide (TMDC) monolayer has recently emerged as an important two-dimensional semiconductor with promising potentials for electronic and optoelectronic devices. Unlike semi-metallic graphene, layered TMDC has a sizable band gap. More interestingly, when thinned down to a monolayer, TMDC transforms from an indirect bandgap to a direct bandgap semiconductor, exhibiting a number of intriguing optical phenomena such as valley selective circular dichroism, doping dependent charged excitons, and strong photocurrent responses. However, the fundamental mechanism underlying such a strong light-matter interaction is still under intensive investigation. The observed optical resonance was initially considered to be band-to-band transitions. In contrast, first-principle calculations predicted a much larger quasiparticle band gap size and an optical response that is dominated by excitonic effects. Here, we report experimental evidence of the exciton dominance mechanism by discovering a series of excitonic dark states in single-layer WS2 using two-photon excitation spectroscopy. In combination with GW-BSE theory, we find the excitons are Wannier excitons in nature but possess extraordinarily large binding energy (~0.7 eV), leading to a quasiparticle band gap of 2.7 eV. These strongly bound exciton states are observed stable even at room temperature. We reveal an exciton series in significant deviation from hydrogen models, with a novel inverse energy dependence on the orbital angular momentum. These excitonic energy levels are experimentally found robust against environmental perturbations. The discovery of excitonic dark states and exceptionally large binding energy not only sheds light on the importance of many-electron effects in this two-dimensional gapped system, but also holds exciting potentials for the device application of TMDC monolayers and their heterostructures.

cond-mat.mes-hall