a brief introduction to chroma
play

A Brief Introduction to Chroma S. Collins, University of Regensburg - PowerPoint PPT Presentation

A Brief Introduction to Chroma S. Collins, University of Regensburg Outline What is chroma? What can it do? Design. XML input and running chroma. How to get it. How to compile it. 2 Other chroma lectures and tutorials


  1. A Brief Introduction to Chroma S. Collins, University of Regensburg

  2. Outline ◮ What is chroma? ◮ What can it do? ◮ Design. ◮ XML input and running chroma. ◮ How to get it. ◮ How to compile it. 2

  3. Other chroma lectures and tutorials Several chroma lectures and tutorials have been given before (see chroma web site): ◮ HackLatt’09/08/07/06, Balint Jo ´ o , Dave Richards. ◮ Numerical Methods Lecture, Seattle Summer School, Balint Jo ´ o , ◮ Lattice Practices 2008, Carsten Urbach and Andreas Jüttner. Some have a different emphasis - e.g. hmc. 3

  4. What is chroma? Chroma is a C++ software package for performing Lattice QCD calculations. Chroma is based on QDP++. ◮ QDP++ provides an interface where operations can be applied on lattice wide objects. - e.g. LatticeColorMatrix, LatticeFermion, LatticePropagator e.g. Gamma ( G5 ) ∗ quark _ propagator ∗ Gamma ( G5 ) ◮ The level of abstraction is such that user code written using the interface can be run unchanged on a single processor or multiprocessors with parallel communications. ◮ Architectural dependencies are hidden below the interface. For chroma: storage, IO, manipulation and parallelization delegated to QDP++. 4

  5. What is chroma? QDP++ itself uses other packages - QIO for data parallel IO + XpathReader (included in QDP++ download), libxml2 - QMT for multi-threading, - QMP for parallel communications. Q-packages developed as part of the SciDAC initiative. Additional target architecture specific optimized packages, Chroma - SSE Wilson Dslash (included in chroma download) - CG-DWF (included in chroma download) - BAGEL Wilson Dslash - BAGEL clover QDP++ - BAGEL QDP Also need BAGEL generator for BAGEL optimizations. 5

  6. What is chroma? There is a hierachy of software packages needed for chroma - Scalar build very simple: chroma and qdp++ (QIO/XpathReader included, need libxml2) - Parallel build more complicated depending on target. Chroma compiles on any target machine, - Optimization packages mean good performance on some targets, SSE2 based machines, BlueGene/L(P). 6

  7. What can chroma do? The chroma software package can generate configurations using the executables ◮ purgaug - for pure gauge configurations using heat bath and overrelaxation algorithms, ◮ hmc - for hybrid Monte Carlo for dynamical configurations (including “sea quarks”). The executable chroma can be used to calculate many observables, using the configurations generated. The configurations and observables can be calculated in many different ways (different actions, gauges, using different algorithms etc), ◮ naturally, orientated towards the programme of the JLab lattice group + collaborators (who wrote the code), ◮ constantly expanding, - some measurements will not be refined or working properly. 7

  8. What observables can be calculated? An incomplete list: Eigenvalue/-vector measurements ◮ Eigenvalue/-vector calculation via Kalkreuter-Simma algorithm Gluonic observables ◮ Plaquette, Wilson loops Hadronic observables ◮ Meson and baryon 2pt + 3pt functions ◮ Meson-meson 4pt functions ◮ Static-light correlators ◮ Hybrid mesons ◮ Nucleon-nucleon 4pt functions 8

  9. Some of the available actions Gauge actions ◮ Wilson gauge action ◮ Lüscher-Weisz gauge action (tree level and 1-loop) Fermion actions ◮ Staggered fermions (naïve and Asqtad) ◮ Wilson fermions ◮ Clover improved Wilson fermions (Standard, SLiNC) ◮ Domain wall fermions ◮ Overlap fermions (many approx. schemes in 4D and 5D and deflation) 9

  10. Some of the available BCs, inverters, sources and sinks Boundary conditions ◮ Periodic, antiperiodic BCs ◮ Dirichlet BCs ◮ Twisted BCs Inverters ◮ Conjugate gradient ◮ BiCGStab, BiCGStab with “reliable” updates for mixed precision ◮ Minimal Residual ◮ EigCG Quark sources and sinks ◮ Point, Shell (gauge invariant Gaussian) ◮ Derivative (covariant derivative and displacements) ◮ Momentum wall ◮ Stochastic 10

  11. Gauge fixing and link smearings Gauge fixing ◮ Axial gauge ◮ Coulomb gauge ◮ Landau gauge ◮ and Random gauge transformation Link smearings ◮ APE ◮ HYP ◮ Stout 11

  12. Design Here, only mention basics and what is relevant for understanding input files. ◮ Chroma is an object-orientated code. ◮ Makes use of design patterns - general solutions to commonly occuring problems (there are books on this). - e.g. handle, factory function, factory, singleton. ◮ Implementation of design patterns comes from LOKI library (A. Alexandrescu). How to achieve a code which ◮ has a high degree of flexibility at run time in terms of what is calculated and how, ◮ where the calculations themselves may be complicated involving several steps, ◮ (easily) extendable? 12

  13. Design Split the calculation into modules or tasks, ◮ a task may appear repeatedly in different calculations, e.g. make a source for the propagator, invert on the source to obtain the propagator. ◮ natural in object-oriented programming. When calculating observables the tasks are referred to as inline measurements in chroma. At run time need to specify what tasks need to be performed, ◮ many tasks possible, ◮ many ways to perform the task (e.g. what inverter to use for generating the propagator). 13

  14. Solution: use the Factory pattern Digression: object-oriented programs are designed in terms of objects, ◮ a class is used to define the type of object, e.g. class InlinePropagator{} , class InlineMakeSource{} , ◮ classes for objects with similar properties can be derived from a base class (inheritance), e.g. class InlineMeas{} , class InlinePropagator: public InlineMeas {} , class InlineMakeSource: public InlineMeas {} , ◮ One can create instances of the object using a creation function, (c.f. new InlinePropagator() ) e.g. InlinePropagator* createInlineProp() , InlineMakeSource* createInlineMakeS() , Can do InlineMeas *my_inline; my_inline = createInlineProp(); my_inline = createInlineMakeS(); 14

  15. The Factory pattern This is essentially a map from an id (or key) to a creation function for the object. Map: “ PROPAGATOR ” − → InlinePropagator* createInlineProp() Can now create different inline measurements by querying the map. std::map<std::string, InlineMeas* (*)(void)> factory_map; factory_map.insert(make_pair("PROPAGATOR",createInlineProp())); factory_map.insert(make_pair("MAKE_SOURCE",createInlineMakeS())); with InlineMeas *my_line = (factory_map["PROPAGATOR"])(); This pattern is used throughout chroma, - e.g. smearing, inverters, boundary conditions, . . . , - in the input file factory keys are capitalized. More complicated: chroma uses handles, maps are singletons etc. 15

  16. IO Output of observables calculated within an inline measurement is dealt with within the inline measurement. Lattice objects in chroma (defined in QDP++), - e.g. LatticeColorMatrix , LatticeFermion , LatticePropagator , are needed as input for inline measurements or created by the measurement. These objects are assigned an ID (string) and stored in memory as “NamedObjects”, - using a map, TheNamedObjMap (singleton). - Input/Output dealt with using inline measurements (separated from the calculation of observables). 16

  17. Documentation Chroma is a very large package - difficult to get an overview (QDP++ better documented). Useful: ◮ doxygen documentation - generated from the code, accessible from chroma website or generate from source code yourself, ◮ cd chroma/docs; make ◮ lectures/tutorials, ◮ notes - Huey-Wen Lin’s compilation of notes at http://www.jlab.org/~hwlin/Chroma_notes/chroma_note.html , also available as latex source files on chroma website or in chroma source code (chroma/docs/notes), ◮ chroma is changing all the time, look at comments in git repository. Find out how to invoke different gauge actions/boundary conditions/inline measurements by looking in the test files. 17

  18. Test files These are written for regression tests and can be found in sub-directories of source code: chroma/tests ◮ chroma/tests/chroma (chroma inline measurement tests) ◮ chroma/tests/hmc (HMC tests) ◮ chroma/tests/purgaug (pure gauge configuration generation tests) ◮ . . . For each test there is ◮ an input file for the test, ◮ the corresponding output file. No guarantees - there can be/have been bugs in chroma. Less likely in older (well used) measurements. 18

  19. Citations If you use chroma in your simulations you must cite the appropriate people. Always R. G. Edwards, B. Jo ´ o , arXiv:hep-lat/0409003, Nucl. Phys B140(Proc. Suppl) 882, 2005. SSE Optimised Dslash code C. McClendon, Jlab preprint JLAB-THY-01-29. BAGEL assembly generator P. A. Boyle, http://www.ph.ed.ac.uk/~paboyle/bagel/Bagel.html , 2005. QUDA GPU Library M. A. Clark, R. Babich, K. Barros, R. C. Brower, C. Rebbi, arXiv:0911.3191v1 [hep-lat] Look at the chroma website for the most up-to-date references. 19

  20. Running For generating pure gauge configurations: purgaug -i config.ini.xml -o config.out.xml Input file: XML, - what gauge action to use, lattice size, how many updates, any observables to calculate . . . . Output: - standard output (screen): can include status, performance, timings etc. - XML file, config.out.xml: log of calc., can contain physics e.g. the plaquette or the values of any observables that were calculated. XML output may be lengthy. 20

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend