Arxiv:1904.00031V1 [Quant-Ph] 29 Mar 2019

Total Page:16

File Type:pdf, Size:1020Kb

Arxiv:1904.00031V1 [Quant-Ph] 29 Mar 2019 NetKet: A Machine Learning Toolkit for Many-Body Quantum Systems Giuseppe Carleo,1 Kenny Choo,2 Damian Hofmann,3 James E. T. Smith,4 Tom Westerhout,5 Fabien Alet,6 Emily J. Davis,7 Stavros Efthymiou,8 Ivan Glasser,8 Sheng-Hsuan Lin,9 Marta Mauri,1, 10 Guglielmo Mazzola,11 Christian B. Mendl,12 Evert van Nieuwenburg,13 Ossian O'Reilly,14 Hugo Th´eveniaut,6 Giacomo Torlai,1 and Alexander Wietek1 1Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, NY 10010, New York, USA 2Department of Physics, University of Zurich, Winterthurerstrasse 190, 8057 Z¨urich,Switzerland 3Max Planck Institute for the Structure and Dynamics of Matter, Luruper Chaussee 149, 22761 Hamburg, Germany 4Department of Chemistry, University of Colorado Boulder, Boulder, Colorado 80302, USA 5Institute for Molecules and Materials, Radboud University, NL-6525 AJ Nijmegen, The Netherlands 6Laboratoire de Physique Th´eorique,IRSAMC, Universit´ede Toulouse, CNRS, UPS, 31062 Toulouse, France 7Department of Physics, Stanford University, Stanford, California 94305, USA 8Max-Planck-Institut f¨urQuantenoptik, Hans-Kopfermann-Straße 1, 85748 Garching bei M¨unchen,Germany 9Department of Physics, T42, Technische Universit¨atM¨unchen, James-Franck-Straße 1, 85748 Garching bei M¨unchen,Germany 10Dipartimento di Fisica, Universit`adegli Studi di Milano, via Celoria 16, I-20133 Milano, Italy 11Theoretische Physik, ETH Z¨urich,8093 Z¨urich,Switzerland 12Technische Universit¨atDresden, Institute of Scientific Computing, Zellescher Weg 12-14, 01069 Dresden, Germany 13Institute for Quantum Information and Matter, California Institute of Technology, Pasadena, CA 91125, USA 14Southern California Earthquake Center, University of Southern California, 3651 Trousdale Pkwy, Los Angeles, CA 90089, USA We introduce NetKet, a comprehensive open source framework for the study of many-body quan- tum systems using machine learning techniques. The framework is built around a general and flexible implementation of neural-network quantum states, which are used as a variational ansatz for quan- tum wavefunctions. NetKet provides algorithms for several key tasks in quantum many-body physics and quantum technology, namely quantum state tomography, supervised learning from wavefunc- tion data, and ground state searches for a wide range of customizable lattice models. Our aim is to provide a common platform for open research and to stimulate the collaborative development of computational methods at the interface of machine learning and many-body physics. I. MOTIVATION AND SIGNIFICANCE approaches and algorithms is expected to grow rapidly given these first successes, steepening the learning curve. Recent years have seen a tremendous activity around The goal of NetKet is to provide a set of primitives the development of physics-oriented numerical techniques and flexible tools to ease the development of cutting- based on machine learning (ML) tools [1]. In the context edge ML applications for quantum many-body physics. of many-body quantum physics, one of the main goals NetKet also wants to help bridge the gap between the lat- of these approaches is to tackle complex quantum prob- est and technically demanding developments in the field lems using compact representations of many-body states and those scholars and students who approach the sub- based on artificial neural networks. These representa- ject for the first time. Pedagogical tutorials are provided tions, dubbed neural-network quantum states (NQS) [2], to this aim. Serving as a common platform for future re- can be used for several applications. In the supervised search, the NetKet project is meant to stimulate the open and easy-to-certify development of new methods and to arXiv:1904.00031v1 [quant-ph] 29 Mar 2019 learning setting, they can be used, e.g., to learn existing quantum states for which a non-NQS representation is provide a common set of tools to reproduce published available [3]. In the unsupervised setting, they can be results. used to reconstruct complex quantum states from exper- imental measurements, a task known as quantum state A central philosophy of the NetKet framework is to tomography [4]. Finally, in the context of purely varia- provide tools that are as simple as possible to use for tional applications, NQS can be used to find approximate the end user. Given the huge popularity of the Python ground- and excited-state solutions of the Schr¨odinger programming language and of the many accompanying equation [2, 5{9], as well as to describe unitary [2, 10, 11] tools gravitating around the Python ecosystem, we have and dissipative [12{15] many-body dynamics. Despite built NetKet as a full-fledged Python library. This sim- the increasing methodological and theoretical interest in plicity of use however does not come at the expense of NQS and their applications, a set of comprehensive, easy- performance. With this efficiency requirement in mind, to-use tools for research applications is still lacking. This all critical routines and components of NetKet have been is particularly pressing as the complexity of NQS-related written in C++11. 2 II. SOFTWARE DESCRIPTION which is done with the help of the nlohmann/json library for C++ [23]. Parallelization is implemented based on We will first give a general overview of the structure of the Message Passing Interface (MPI), allowing to sub- the code in Sect. II A and then provide additional details stantially decrease running time. Specifically, the Monte on the functionality of NetKet in Sect. II B. Carlo sampling of expectation values implemented in the variational.Vmc class is parallelized, with each node drawing independent samples from the probability dis- A. Software architecture tribution which are averaged over all nodes. The core of NetKet is implemented in C++. For ease of use and in order to facilitate the integration with other B. Software functionalities frameworks, a Python interface is provided, which ex- poses all high-level functionality from the C++ core via The core feature of NetKet is the variational represen- pybind11 [16] bindings. Use of the Python interface is tation of quantum states by artificial neural networks. recommended for users building on the library for re- Given a variational state, the task is to optimize its pa- search purposes, while the C++ code should be modified rameters with regard to a specified loss function, such as for extending the NetKet library itself. the total energy for ground state searches or the (nega- NetKet is divided into several submodules. The mod- tive) overlap with a given target state. In this section, ules graph, hilbert, and operator contain the classes we will discuss the models, types of variational wavefunc- necessary for specifying the structure of the many-body tions, and learning schemes that are available in NetKet. Hilbert space, the Hamiltonian, and other observables of a quantum system. The core component of NetKet is the machine mod- 1. Model specification ule, which provides different variational representa- tions of the quantum wavefunction, particularly in the NetKet currently supports lattice models with a finite form of NQS. The variational, supervised, and Hilbert space of the form H = NN H where N de- unsupervised modules contain driver classes for energy i=1 local notes the number of lattice sites. The system is defined optimization, supervised learning, and quantum state to- on a graph G = (V; E) with a set of sites V and a set mography, respectively. These driver classes are sup- of edges (also called bonds) E between sites. The graph ported by the sampler and optimizer modules, which structure is used to help with the definition of opera- provide classes for performing Variational Monte Carlo tors on the lattice and to encode the spatial structure of (VMC) sampling and optimization steps. the model, which is necessary, e.g., to work with con- The exact module provides functions for exact diago- volutional neural networks (CNNs). NetKet provides nalization (ED) and imaginary time propagation of the the predefined Hypercube and Lattice graphs. Fur- full quantum state, in order to allow for easy benchmark- thermore, CustomGraph supports arbitrary edge-colored ing and exploration of small systems within the NetKet graphs, where each edge is associated with an integer la- framework. ED can be performed by full diagonalization bel called its color. This color can be used to describe of the Hamiltonian or, alternatively, by a Lanczos proce- different types of bonds. dure, where the user may choose between a sparse matrix representation of the Hamiltonian and a matrix-free im- Several predefined Hamiltonians are provided, such as plementation. The Lanczos solver is based on the IETL spin models (transverse field Ising, Heisenberg models) or library from the ALPS project [17, 18] which implements bosonic models (Bose-Hubbard model). For specifying a variant of the Lanczos algorithm due to Cullum and other observables and custom Hamiltonians, additional classes are available: A convenient option for common Willoughby [19, 20]. The dynamics module provides a basic Runge-Kutta ODE solver which is used for the ex- lattice models is to use the GraphOperator class, which act imaginary time propagation. allows to construct a Hamiltonian from a family of 2-local operators acting on each bond of a selected color and a The utility modules output, stats, and util contain family of 1-local operators acting on each site. It is also some additional functionality for output and statistics possible to specify general k-local operators (as well as that is used internally in other parts of NetKet. their products and sums) using the class. An overview of the most important modules and their LocalOperator dependencies is given in Figure 1. A more detailed de- scription of the module contents will be given in the next section. 2. Variational quantum states NetKet uses the Eigen 3 library [21] for linear algebra routines. In the Python interface, Eigen datatypes are The purpose of variational states is to provide a transparently converted to and from NumPy [22] arrays compact and computationally efficient representation of by pybind11.
Recommended publications
  • An Overview of Quantum Monte Carlo Methods David M. Ceperley
    An Overview of Quantum Monte Carlo Methods David M. Ceperley Department of Physics and National Center for Supercomputing Applications University of Illinois Urbana-Champaign Urbana, Illinois 61801 In this brief article, I introduce the various types of quantum Monte Carlo (QMC) methods, in particular, those that are applicable to systems in extreme regimes of temperature and pressure. We give references to longer articles where detailed discussion of applications and algorithms appear. MOTIVATION One does QMC for the same reason as one does classical simulations; there is no other method able to treat exactly the quantum many-body problem aside from the direct simulation method where electrons and ions are directly represented as particles, instead of as a “fluid” as is done in mean-field based methods. However, quantum systems are more difficult than classical systems because one does not know the distribution to be sampled, it must be solved for. In fact, it is not known today which quantum problems can be “solved” with simulation on a classical computer in a reasonable amount of computer time. One knows that certain systems, such as most quantum many-body systems in 1D and most bosonic systems are amenable to solution with Monte Carlo methods, however, the “sign problem” prevents making the same statement for systems with electrons in 3D. Some limitations or approximations are needed in practice. On the other hand, in contrast to simulation of classical systems, one does know the Hamiltonian exactly: namely charged particles interacting with a Coulomb potential. Given sufficient computer resources, the results can be of quite high quality and for systems where there is little reliable experimental data.
    [Show full text]
  • Variational Monte Carlo Technique Ground State Energies of Quantum Mechanical Systems
    GENERAL ⎜ ARTICLE Variational Monte Carlo Technique Ground State Energies of Quantum Mechanical Systems Sukanta Deb In this article, I discuss the use of the Variational Monte Carlo technique in the determination of ground state energies of quantum harmonic os- cillators in one and three dimensions. In order to provide a better understanding of this technique, a pre-requisite concept of Monte Carlo integra- Sukanta Deb is an tion is also discussed along with numerical ex- Assistant Professor in the amples. The technique can be easily extended Department of Physics at Acharya Narendra Dev to study the ground state energies of hydrogen College (University of atom, particle in a box, helium atom and other Delhi). His research complex microscopic systems involving N parti- interests include astro- cles in d-dimensions. nomical photometry and spectroscopy, light curve 1. Introduction modeling in astronomy and astrophysics, Monte Carlo There exist many problems in science and engineering methods and simulations whose exact solution either does not exist or is difficult and automated data to find. For the solutions of those problems, one has to analysis. resort to approximate methods. In the context of quan- tum mechanics, the exact solutions of the Schr¨odinger’s equation exist only for a few idealized systems. There are varieties of systems for which the Schr¨odinger’s equa- tion either cannot be solved exactly or it involves very lengthy and cumbersome calculations [1]. For example, solving the Schr¨odinger equation to study the proper- ties of a system with hundreds or thousands of particles often turns out to be impractical [2].
    [Show full text]
  • Unifying Cps Nqs
    Citation for published version: Clark, SR 2018, 'Unifying Neural-network Quantum States and Correlator Product States via Tensor Networks', Journal of Physics A: Mathematical and General, vol. 51, no. 13, 135301. https://doi.org/10.1088/1751- 8121/aaaaf2 DOI: 10.1088/1751-8121/aaaaf2 Publication date: 2018 Document Version Peer reviewed version Link to publication This is an author-created, in-copyedited version of an article published in Journal of Physics A: Mathematical and Theoretical. IOP Publishing Ltd is not responsible for any errors or omissions in this version of the manuscript or any version derived from it. The Version of Record is available online at http://iopscience.iop.org/article/10.1088/1751-8121/aaaaf2/meta University of Bath Alternative formats If you require this document in an alternative format, please contact: [email protected] General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. Take down policy If you believe that this document breaches copyright please contact us providing details, and we will remove access to the work immediately and investigate your claim. Download date: 04. Oct. 2021 Unifying Neural-network Quantum States and Correlator Product States via Tensor Networks Stephen R Clarkyz yDepartment of Physics, University of Bath, Claverton Down, Bath BA2 7AY, U.K. zMax Planck Institute for the Structure and Dynamics of Matter, University of Hamburg CFEL, Hamburg, Germany E-mail: [email protected] Abstract.
    [Show full text]
  • Arxiv:1902.04057V3 [Cond-Mat.Dis-Nn] 19 Jan 2020 Statistical Mechanics Applications [16], As Well As Den- Spin Systems [13]
    Deep autoregressive models for the efficient variational simulation of many-body quantum systems 1, 1, 1, 2, 1, Or Sharir, ∗ Yoav Levine, † Noam Wies, ‡ Giuseppe Carleo, § and Amnon Shashua ¶ 1The Hebrew University of Jerusalem, Jerusalem, 9190401, Israel 2Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, NY 10010, USA Artificial Neural Networks were recently shown to be an efficient representation of highly-entangled many-body quantum states. In practical applications, neural-network states inherit numerical schemes used in Variational Monte Carlo, most notably the use of Markov-Chain Monte-Carlo (MCMC) sampling to estimate quantum expectations. The local stochastic sampling in MCMC caps the potential advantages of neural networks in two ways: (i) Its intrinsic computational cost sets stringent practical limits on the width and depth of the networks, and therefore limits their expressive capacity; (ii) Its difficulty in generating precise and uncorrelated samples can result in estimations of observables that are very far from their true value. Inspired by the state-of-the-art generative models used in machine learning, we propose a specialized Neural Network architecture that supports efficient and exact sampling, completely circumventing the need for Markov Chain sampling. We demonstrate our approach for two-dimensional interacting spin models, showcas- ing the ability to obtain accurate results on larger system sizes than those currently accessible to neural-network quantum states. Introduction.– The theoretical understanding and been limited to relatively shallow architectures, far from modeling of interacting many-body quantum matter rep- the very deep networks used in modern machine learn- resents an outstanding challenge since the early days of ing applications.
    [Show full text]
  • An Introduction to Quantum Monte Carlo
    An introduction to Quantum Monte Carlo Jose Guilherme Vilhena Laboratoire de Physique de la Matière Condensée et Nanostructures, Université Claude Bernard Lyon 1 Outline 1) Quantum many body problem; 2) Metropolis Algorithm; 3) Statistical foundations of Monte Carlo methods; 4) Quantum Monte Carlo methods ; 4.1) Overview; 4.2) Variational Quantum Monte Carlo; 4.3) Diffusion Quantum Monte Carlo; 4.4) Typical QMC calculation; Outline 1) Quantum many body problem; 2) Metropolis Algorithm; 3) Statistical foundations of Monte Carlo methods; 4) Quantum Monte Carlo methods ; 4.1) Overview; 4.2) Variational Quantum Monte Carlo; 4.3) Diffusion Quantum Monte Carlo; 4.4) Typical QMC calculation; 1 - Quantum many body problem Consider of N electrons. Since m <<M , to a good e N approximation, the electronic dynamics is governed by : Z Z 1 2 1 H =− ∑ ∇ i −∑∑ ∑∑ 2 i i ∣r i−d∣ 2 i j ≠i ∣ri−r j∣ which is the Born Oppenheimer Hamiltonian. We want to find the eigenvalues and eigenvectos of this hamiltonian, i.e. : H r1, r 2,. ..,r N =E r 1, r2,. ..,r N QMC allow us to solve numerically this, thus providing E0 and Ψ . 0 1 - Quantum many body problem Consider of N electrons. Since m <<M , to a good e N approximation, the elotonic dynamics is governed by : Z Z 1 2 1 H =− ∑ ∇ i −∑∑ ∑∑ 2 i i ∣r i−d∣ 2 i j ≠i ∣ri−r j∣ which is the Born Oppenheimer Hamiltonian. We want to find the eigenvalues and eigenvectos of this hamiltonian, i.e. : H r1, r 2,.
    [Show full text]
  • University of Bath
    Citation for published version: Clark, SR 2018, 'Unifying Neural-network Quantum States and Correlator Product States via Tensor Networks', Journal of Physics A: Mathematical and General, vol. 51, no. 13, 135301. https://doi.org/10.1088/1751- 8121/aaaaf2 DOI: 10.1088/1751-8121/aaaaf2 Publication date: 2018 Document Version Peer reviewed version Link to publication This is an author-created, in-copyedited version of an article published in Journal of Physics A: Mathematical and Theoretical. IOP Publishing Ltd is not responsible for any errors or omissions in this version of the manuscript or any version derived from it. The Version of Record is available online at http://iopscience.iop.org/article/10.1088/1751-8121/aaaaf2/meta University of Bath General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. Take down policy If you believe that this document breaches copyright please contact us providing details, and we will remove access to the work immediately and investigate your claim. Download date: 23. May. 2019 Unifying Neural-network Quantum States and Correlator Product States via Tensor Networks Stephen R Clarkyz yDepartment of Physics, University of Bath, Claverton Down, Bath BA2 7AY, U.K. zMax Planck Institute for the Structure and Dynamics of Matter, University of Hamburg CFEL, Hamburg, Germany E-mail: [email protected] Abstract. Correlator product states (CPS) are a powerful and very broad class of states for quantum lattice systems whose (unnormalised) amplitudes in a fixed basis can be sampled exactly and efficiently.
    [Show full text]
  • Variational Monte Carlo Method for Fermions
    Variational Monte Carlo Method for Fermions Vijay B. Shenoy [email protected] Indian Institute of Science, Bangalore December 26, 2009 1/91 Acknowledgements Sandeep Pathak Department of Science and Technology 2/91 Plan of the Lectures on Variational Monte Carlo Method Motivation, Overview and Key Ideas Details of VMC Application to Superconductivity 3/91 The Strongly Correlated Panorama... Fig. 1. Phase diagrams ofrepresentativemateri- als of the strongly cor- related electron family (notations are standard and details can be found in the original refer- ences). (A) Temperature versus hole density phase diagram of bilayer man- ganites (74), including several types of antiferro- magnetic (AF) phases, a ferromagnetic (FM) phase, and even a glob- ally disordered region at x 0 0.75. (B) Generic phase diagram for HTSC. SG stands for spin glass. (C) Phase diagram of single layered ruthenates (75, 76), evolving from a superconducting (SC) state at x 0 2 to an AF insulator at x 0 0(x controls the bandwidth rather than the carrier density). Ruthenates are believed to be clean metals at least at large x, thus providing a family of oxides where competition and com- plexity can be studied with less quenched dis- order than in Mn ox- ides. (D) Phase diagram of Co oxides (77), with SC, charge-ordered (CO), and magnetic regimes. (E) Phase diagram of the organic k-(BEDT- TTF)2Cu[N(CN)2]Cl salt (57). The hatched re- gion denotes the co- existence of metal and insulator phases. (F) Schematic phase dia- gram of the Ce-based heavy fermion materials (51).
    [Show full text]
  • Quantum Monte Carlo Simulations: from Few to Many Species
    Quantum Monte Carlo Simulations: From Few to Many Species by William Gary Dawkins A Thesis Presented to The University of Guelph In partial fulfilment of requirements for the degree of Master of Science in Physics Guelph, Ontario, Canada c William Gary Dawkins, May, 2019 ABSTRACT QUANTUM MONTE CARLO SIMULATIONS: FROM FEW TO MANY SPECIES William Gary Dawkins Advisor: University of Guelph, 2019 Professor Alexandros Gezerlis We study systems of particles with varying numbers of distinguishable species ranging from 4-species to the N-species limit, where N is the number of particles in the system itself. We examine these systems using various powerful simulation techniques that belong to the quantum Monte Carlo (QMC) family. The N-species limit is studied via Path Integral Monte Carlo (PIMC), which is a finite temperature, non- perturbative technique. At this limit, we explore the viability of two different thermal density matrices for systems that interact via hard-sphere, hard-cavity potentials. We then study the impact of finite-size effects on calculations of the energy, pressure and specific heat of the system when reaching the thermodynamic limit under periodic boundary conditions. We then move to studying a 4-species fermionic system using Variational Monte Carlo (VMC) and Diffusion Monte Carlo (DMC), which are ground state techniques. We apply these methods to the clustering problem of 4-particle and 8-particle systems. While the 4-particle, 4-species system is relatively simple to calculate as it is physically identical to a bosonic system of 4-particles, the 8-particle fermi system is more complicated. We detail the process of simulating a bound 8- particle state with respect to decay into two independent 4-particle clusters with DMC for the first time.
    [Show full text]
  • Deep Learning-Enhanced Variational Monte Carlo Method for Quantum Many-Body Physics
    PHYSICAL REVIEW RESEARCH 2, 012039(R) (2020) Rapid Communications Deep learning-enhanced variational Monte Carlo method for quantum many-body physics Li Yang ,1,* Zhaoqi Leng,2 Guangyuan Yu,3 Ankit Patel,4,5 Wen-Jun Hu,1,† and Han Pu1,‡ 1Department of Physics and Astronomy & Rice Center for Quantum Materials, Rice University, Houston, Texas 77005, USA 2Department of Physics, Princeton University, Princeton, New Jersey 08544, USA 3Department of Physics and Astronomy & The Center for Theoretical Biological Physics, Rice University, Houston, Texas 77005, USA 4Department of Electrical and Computer Engineering, Rice University, Houston, Texas 77005, USA 5Department of Neuroscience, Baylor College of Medicine, Houston, Texas 77030, USA (Received 26 May 2019; accepted 12 December 2019; published 14 February 2020) Artificial neural networks have been successfully incorporated into the variational Monte Carlo method (VMC) to study quantum many-body systems. However, there have been few systematic studies exploring quantum many-body physics using deep neural networks (DNNs), despite the tremendous success enjoyed by DNNs in many other areas in recent years. One main challenge of implementing DNNs in VMC is the inefficiency of optimizing such networks with a large number of parameters. We introduce an importance sampling gradient optimization (ISGO) algorithm, which significantly improves the computational speed of training DNNs by VMC. We design an efficient convolutional DNN architecture to compute the ground state of a one-dimensional SU(N) spin chain. Our numerical results of the ground-state energies with up to 16 layers of DNNs show excellent agreement with the Bethe ansatz exact solution. Furthermore, we also calculate the loop correlation function using the wave function obtained.
    [Show full text]
  • Variational Quantum Monte Carlo Abstract Introduction
    Variational Quantum Monte Carlo Josh Jiang, The University of Chicago > (1.1) Abstract The many electron system is one that quantum mechanics have no exact solution for because of the correlation between each electron with every other electron. Many methods have been developed to account for this correlation. One family of methods known as quantum Monte Carlo methods takes a numerical approach to solving the many-body problem. By employing a stochastic process to estimate the energy of a system, this method can be used to calculate the ground state energy of a system using the variational principle. The core of this method involves choosing an ansatz with a set of variational parameters that can be optimized to minimize the energy of the system. Recent research in this field is focused on developing methods to faster and more efficiently optimize this trial ansatz and also to make the ansatz more flexible by allowing more parameters. These topics along with the theory behind variational Monte Carlo (VMC) will be the subject of this Maple worksheet. Introduction Quantum mechanics is the study of particles at a very small scale. At this scale, particles can be characterized by wave functions and behave much differently than classical systems. By understanding how molecules behave at the quantum level, researchers can apply that knowledge to gain insights into how macroscopic systems work. While the applications are promising, quantum mechanics still struggles to understand the behavior of large atomic systems. For small, simple systems like particle in a box, harmonic oscillator, and the hydrogen atom, the Schrodinger equation: can be solved exactly, revealing the energy levels and exact wave functions for those systems.
    [Show full text]
  • Variational Monte Carlo Method for Fermions
    Variational Monte Carlo Method for Fermions Vijay B. Shenoy [email protected] Indian Institute of Science, Bangalore Mahabaleswar, December 2009 1/36 Acknowledgements Sandeep Pathak 2/36 Acknowledgements Sandeep Pathak Department of Science and Technology 2/36 Plan of the Lectures on Variational Monte Carlo Method Motivation, Overview and Key Ideas (Lecture 1, VBS) 3/36 Plan of the Lectures on Variational Monte Carlo Method Motivation, Overview and Key Ideas (Lecture 1, VBS) Details of VMC (Lecture 2, VBS) 3/36 Plan of the Lectures on Variational Monte Carlo Method Motivation, Overview and Key Ideas (Lecture 1, VBS) Details of VMC (Lecture 2, VBS) Application to Superconductivity (Lecture 3, VBS) 3/36 Plan of the Lectures on Variational Monte Carlo Method Motivation, Overview and Key Ideas (Lecture 1, VBS) Details of VMC (Lecture 2, VBS) Application to Superconductivity (Lecture 3, VBS) Application to Bosons (Lecture 4, AP) 3/36 Plan of the Lectures on Variational Monte Carlo Method Motivation, Overview and Key Ideas (Lecture 1, VBS) Details of VMC (Lecture 2, VBS) Application to Superconductivity (Lecture 3, VBS) Application to Bosons (Lecture 4, AP) Application to Spin Liquids (Lecture 5, AP) 3/36 The Strongly Correlated Panorama... Fig. 1. Phase diagrams ofrepresentativemateri- als of the strongly cor- related electron family (notations are standard and details can be found in the original refer- ences). (A) Temperature versus hole density phase diagram of bilayer man- ganites (74), including several types of antiferro- magnetic (AF) phases, a ferromagnetic (FM) phase, and even a glob- ally disordered region at x 0 0.75.
    [Show full text]
  • Arxiv:1807.10633V1 [Physics.Chem-Ph] 27 Jul 2018
    Improved speed and scaling in orbital space variational monte carlo Iliya Sabzevari1 and Sandeep Sharma1, ∗ 1Department of Chemistry and Biochemistry, University of Colorado Boulder, Boulder, CO 80302, USA In this work, we introduce three algorithmic improvements to reduce the cost and improve the scal- ing of orbital space variational Monte Carlo (VMC). First, we show that by appropriately screening the one- and two-electron integrals of the Hamiltonian one can improve the efficiency of the al- gorithm by several orders of magnitude. This improved efficiency comes with the added benefit that the resulting algorithm scales as the second power of the system size O(N 2), down from the fourth power O(N 4). Using numerical results, we demonstrate that the practical scaling obtained is in fact O(N 1:5) for a chain of Hydrogen atoms, and O(N 1:2) for the Hubbard model. Second, we introduce the use of the rejection-free continuous time Monte Carlo (CTMC) to sample the determinants. CTMC is usually prohibitively expensive because of the need to calculate a large number of intermediates. Here, we take advantage of the fact that these intermediates are already calculated during the evaluation of the local energy and consequently, just by storing them one can use the CTCM algorithm with virtually no overhead. Third, we show that by using the adaptive stochastic gradient descent algorithm called AMSGrad one can optimize the wavefunction energies robustly and efficiently. The combination of these three improvements allows us to calculate the ground state energy of a chain of 160 hydrogen atoms using a wavefunction containing ∼ 2 × 105 variational parameters with an accuracy of 1 mEh/particle at a cost of just 25 CPU hours, which when split over 2 nodes of 24 processors each amounts to only about half hour of wall time.
    [Show full text]