Source author record

John Mitchell

John Mitchell appears in the imported research catalog. Authorship, coauthor and topic links are available while profile ownership is still unclaimed.

ResearcherUnclaimed source record

Catalog footprint

What is connected

4works
5topics
4close collaborators

Actions

Connect this record

Log in to claim

Research graph

See the researcher in context

Open full explorer

Inspect adjacent papers, topics, institutions and collaborators without losing the researcher page.

Building this map preview

BZPEER is loading the nearby papers, people, topics and institutions for this page.

Published work

4 published item(s)

preprint2023arXiv

Identifying and Mitigating the Security Risks of Generative AI

Every major technical invention resurfaces the dual-use dilemma -- the new technology has the potential to be used for good as well as for harm. Generative AI (GenAI) techniques, such as large language models (LLMs) and diffusion models, have shown remarkable capabilities (e.g., in-context learning, code-completion, and text-to-image generation and editing). However, GenAI can be used just as well by attackers to generate new attacks and increase the velocity and efficacy of existing attacks. This paper reports the findings of a workshop held at Google (co-organized by Stanford University and the University of Wisconsin-Madison) on the dual-use dilemma posed by GenAI. This paper is not meant to be comprehensive, but is rather an attempt to synthesize some of the interesting findings from the workshop. We discuss short-term and long-term goals for the community on this topic. We hope this paper provides both a launching point for a discussion on this important topic as well as interesting problems that the research community can work to address.

preprint2023arXiv

Symbiotic and antagonistic disease dynamics on networks using bond percolatio

In this paper we introduce a novel description of the equilibrium state of a bond percolation process on random graphs using the exact method of generating functions. This allows us to find the expected size of the giant connected component (GCC) of two sequential bond percolation processes in which the bond occupancy probability of the second process is modulated (increased or decreased) by a node being inside or outside of the GCC created by the first process. In the context of epidemic spreading this amounts to both a antagonistic partial immunity or a synergistic partial coinfection interaction between the two sequential diseases. We examine configuration model networks with tunable clustering. We find that the emergent evolutionary behaviour of the second strain is highly dependent on the details of the coupling between the strains. Contact clustering generally reduces the outbreak size of the second strain relative to unclustered topologies; however, positive assortativity induced by clustered contacts inverts this conclusion for highly transmissible disease dynamics.

preprint2022arXiv

Competing Charge/Spin-Stripe and Correlated Metal Phases in Trilayer Nickelates (Pr$_{1-x}$La$_x$)$_4$Ni$_3$O$_8$

Low-valent nickelates R$_{n+1}$Ni$_n$O$_{2n+2}$ (R = rare earth) containing Ni$^{1+}$ (d$^{9}$) with a quasi-two-dimensional (quasi-2D) square planar coordination geometry possess structural and electronic properties that are similar to those of high-Tc cuprates, including superconductivity itself in the doped infinite layer ($n = \infty$) RNiO$_2$ system. Within this R$_{n+1}$Ni$_n$O$_{2n+2}$ nickelate family, the crystallographic isomorphs Pr$_4$Ni$_3$O$_8$ and La$_4$Ni$_3$O$_8$ exhibit singularly different ground states: Pr$_4$Ni$_3$O$_8$ is metallic and La$_4$Ni$_3$O$_8$ is a charge- and spin-stripe ordered insulator. To explore and understand the ground state evolution from metallic Pr$_4$Ni$_3$O$_8$ to stripe-ordered La$_4$Ni$_3$O$_8$ in the R$_4$Ni$_3$O$_8$ family, we have grown a series of isovalent-substituted single crystals (Pr$_{1-x}$La$_x$)$_4$Ni$_3$O$_8$. Combining thermodynamic, transport, magnetic, and synchrotron X-ray single crystal diffraction measurements, we reveal a transition between metallic and stripe-insulator phase regions, with a putative quantum phase transition at x = 0.4. We propose two possible models for (Pr$_{1-x}$La$_x$)$_4$Ni$_3$O$_8$: an electronically inhomogeneous system that could serve as a candidate for exploring quantum Griffiths phase physics and a homogeneous system with a putative quantum critical point at the phase boundary.

preprint2022arXiv

The Move Borrow Checker

The Move language provides abstractions for programming with digital assets via a mix of value semantics and reference semantics. Ensuring memory safety in programs with references that access a shared, mutable global ledger is difficult, yet essential for the use-cases targeted by Move. The language meets this challenge with a novel memory model and a modular, intraprocedural static reference safety analysis that leverages key properties of the memory. The analysis ensures the absence of memory safety violations in all Move programs (including ones that link against untrusted code) by running as part of a load-time bytecode verification pass similar to the JVM [12] and CLR [15]. We formalize the static analysis and prove that it enjoys three desirable properties: absence of dangling references, referential transparency for immutable references, and absence of memory leaks.