tmlqcd
tmLQCD is a freely available software suite providing a set of tools to be used in lattice QCD simulations. This is mainly a HMC implementation (including PHMC and RHMC) for Wilson, Wilson Clover and Wilson twisted mass fermions and inverter for different versions of the Dirac operator. The code is fully parallelised and ships with optimisations for various modern architectures, such as commodity PC clusters and the Blue Gene family.
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.1%) to scientific vocabulary
Keywords
Repository
tmLQCD is a freely available software suite providing a set of tools to be used in lattice QCD simulations. This is mainly a HMC implementation (including PHMC and RHMC) for Wilson, Wilson Clover and Wilson twisted mass fermions and inverter for different versions of the Dirac operator. The code is fully parallelised and ships with optimisations for various modern architectures, such as commodity PC clusters and the Blue Gene family.
Basic Info
- Host: GitHub
- Owner: etmc
- License: gpl-3.0
- Language: C
- Default Branch: master
- Homepage: http://www.itkp.uni-bonn.de/~urbach/software.html
- Size: 27.3 MB
Statistics
- Stars: 36
- Watchers: 24
- Forks: 49
- Open Issues: 133
- Releases: 0
Topics
Metadata Files
README
Here are some remarks collected in order to configure, compile and install the tmLQCD programme suit. For more information, also about running the code please read the documentation in the doc sub-directory. CONFIGURE and COMPILE It is recommended to build the code not in the source directory but in a separate directory. The lime library (tested with version 1.2.3) is needed to compile the program. Please download it at http://usqcd.jlab.org/usqcd-software/c-lime/ Configure and compile lime (for documentation see http://usqcd.jlab.org/usqcd-docs/c-lime/) first. Then you should use the configure option --with-lime=dir for the tmLQCD to set the correct directory where to find lime (see below). For more documentation please change into the doc directory and type latex main.tex and see the sections for configuring, installing and testing the code. Here we have gathered some examples for some standard architectures. Building the tmLQCD executables is a three step procedure: **************************************************************************** 1) configure: In your build directory type path-to-the-sources/configure --help to get an overview of the available options and switches. In particular check out the prefix option for your installation path. What follows now are some examples for a few standard architectures. - a scalar build on a P4 machine would look like: path-to-the-sources/configure --disable-mpi --enable-sse2 --enable-p4 \ --enable-gaugecopy --disable-newdiracop --with-limedir=\ --with-lapack=" " \ CC= - Opteron with SSE2: path-to-the-sources/configure --disable-mpi --enable-sse2 --enable-opteron \ --enable-gaugecopy --disable-newdiracop --with-limedir= \ --with-lapack=" " \ CC= - A MPI parallel (4dims) build on a P4 cluster: path-to-the-sources/configure --enable-mpi --enable-sse2 --enable-p4 \ --with-mpidimension=4 --enable-gaugecopy --disable-newdiracop \ --with-limedir= --with-lapack=" " \ CC= - on the Munich Altix machine: path-to-the-sources/configure --enable-mpi --with-mpidimension=4 \ --with-limedir= --enable-newdiracop \ --disable-shmem --with-lapack=" " \ CC=mpicc CFLAGS="-mcpu=itanium2 -O3 -g -c99 -mtune=itanium2" for lapack on this machine please type module load mkl - on the HLRB ice installation use path-to-the-sources/configure --enable-mpi --with-mpidimension=4 \ --disable-sse2 --disable-p4 --with-limedir= \ --enable-newdiracop --with-lapack=" " \ CC="mpicc -std=c99" CFLAGS="-g" \ where it is again important to use the Intel C compiler! for lapack first load the module mkl and then use --with-lapack="-L$LIBRARY_PATH -llapack -lblas" - on Blue Gene installations For the Blue Gene L and P see the README.bg? files For BG/Q you can enable QPX intrinsics with --enable-qpx, which will have effect only with the XLC compiler. You may enable or disable other configure options as needed. See the documentation for more details. **************************************************************************** 2) make type `make` in your build directory. If there appears no error message during compilation you should end up with a few executable in the build directory, namely `hmc_tm`, `invert` and `invert_doublet`. **************************************************************************** 3) make install type `make install` to get the executables installed. **************************************************************************** **************************************************************************** in the following we provide a "codemap", giving a short explanation for the contents of each c-file: **************************************************************************** top directory: apart from the main routines all routines are compiled into the run-time library libhmc. DML_crc32.c: invert, invert_doublet, hmc_tm some helper functions to compute the SCIDAC checksum D_psi.c: invert, invert_doublet, hmc_tm Wilson twisted mass Dirac operator, not even/odd preconditioned Hopping_Matrix.c: invert, invert_doublet, hmc_tm Hopping matrix for the even/odd preconditioned Dirac operator Hopping_Matrix_nocom.c: benchmark Hopping matrix for the even/odd preconditioned Dirac operator, communication switched off Nondegenerate_Matrix.c: invert_doublet, hmc_tm operators needed for even/odd preconditioning the non-degenerate flavour doublet Dirac operator Ptilde_nd.c: hmc_tm the more precise polynomial $\tilde P$ needed for the PHMC for the non-degenerate flavour doublet benchmark.c: main routine benchmark code for D_psi and Hopping_Matrix block.c: experimental boundary.c: invert, invert_doublet, hmc_tm implements the twisted boundary conditions for the spinor fields chebyshev_polynomial.c: experimental chebyshev_polynomial_nd.c: hmc_tm implements the generation of coefficients for the chebyshev polynomial using the clenshaw recursion relation deriv_Sb.c: hmc_tm the variation of Q=gamma_5 D with respect to the gauge fields in the even/odd case deriv_Sb_D_psi.c: hmc_tm the variation of Q=gamma_5 D with respect to the gauge fields in the non even/odd case det_monomial.c: hmc_tm implements the functions needed for a det monomial detratio_monomial.c: hmc_tm implements the functions needed for a detratio monomial poly_monomial.c: hmc_tm implements function needed for a POLY monomial (PHMC for light degenerate quarks) dml.c: invert, invert_doublet, hmc_tm some helper functions to compute the SCIDAC checksum double2single.c: main routine can convert a gauge field from double to single precision single2double.c: main routine can convert a gauge field from single to double precision eigenvalues_bi.c: hmc_tm computes eigenvalues of the mass non-degenerate two flavour Dirac operatoe expo.c: hmc_tm implements the exponetial function of an su(3) element gamma.c: invert, invert_doublet, hmc_tm implements multiplication of gamma matrices and some useful combination of those with a spinor field gauge_io.c: invert, invert_doublet, hmc_tm IO routines for gauge fields gauge_monomial.c: hmc_tm implements the functions needed for a gauge monomial gen_sources.c: invert, invert_doublet, hmc_tm implements the generation of source spinor fields geometry_eo.c: invert, invert_doublet, hmc_tm anything related to gauge and spinor field geometry get_rectangle_staples.c: hmc_tm computes rectangular staples of gauge links as needed for e.g. the Iwasaki gauge action and its derivative get_staples.c: hmc_tm computes plaquette staples of gauge links as needed for for all gauge actions and their derivatives getopt.c: invert, invert_doublet, hmc_tm needed for command line options hmc_tm.c: main routine hmc_tm executable hybrid_update.c: hmc_tm implements the functions for the gauge field update and the momenta update init_bispinor_field.c init_chi_copy.c init_chi_spinor_field.c init_dirac_halfspinor.c init_gauge_field.c init_gauge_tmp.c init_geometry_indices.c init_moment_field.c init_spinor_field.c init_stout_smear_vars.c: invert, invert_doublet, hmc_tm provide routines to allocate memory for the corresponding objects integrator.c: hmc_tm implements the routines needed for the integrator in the MD udpate invert.c: main routine invert executable invert_doublet.c: main routine invert_doublet executable invert_doublet_eo.c: invert_doublet performs an inversion of the flavour doublet operator using even/odd preconditioning and the CG solver invert_eo.c: invert performs an inversion of the Wilson twisted mass Dirac operator using a solver as specified in the input file. Depending on the input file even/odd preconditioning is used or not io.c: invert, invert_doublet, hmc_tm helper routines: some deprecated IO routines for gauge and spinor spinor fields, and the routine writing the initial stdout message of the executables io_utils.c: invert, invert_doublet, hmc_tm IO helper routines related to swap endian and checksums linsolve.c: hmc_tm CG and bicgstab solvers as used only in the HMC little_D.c: experimental measure_rectangles.c: hmc_tm computes the gauge action related to the rectangular part monomial.c: hmc_tm provides the definition for monomials and initialisation functions mpi_init.c: invert, invert_doublet, hmc_tm, benchmark MPI initialisation routine ndpoly_monomial.c: hmc_tm implements the functions needed for a ndpoly monomial observables.c: hmc_tm, invert, invert_doublet computes the gauge action related to the Wilson plaquette part online_measurement.c: hmc_tm anything related to online measurements phmc.c hmc_tm functions and variables as needed for the PHC polyakov_loop.c: hmc_tm measures the polyakov loop propagator_io.c: invert, invert_doublet, hmc_tm functions related to spinor field IO ranlxd.c: invert, invert_doublet, hmc_tm RANLUX random number generator (64 Bit) ranlxs.c: invert, invert_doublet, hmc_tm RANLUX random number generator (32 Bit) read_input.l: invert, invert_doublet, hmc_tm definition of the input file parser (flex) reweighting_factor.c: experimental reweighting_factor_nd.c: experimental sighandler.c: invert, invert_doublet, hmc_tm handles signal related to illegal instructions start.c: invert, invert_doublet, hmc_tm functions needed to give initial values to gauge and spinor fields stout_smear.c: invert, invert_doublet functions to stout smear a given gauge configuration stout_smear_force.c: experimental tm_operators.c: invert, invert_doublet, hmc_tm operators needed for even/odd preconditioning the Wilson twisted mass Dirac operator update_backward_gauge.c: invert, invert_doublet, hmc_tm functions to update the gauge copy update_momenta.c: hmc_tm function to update the momenta in the HMC MD part update_tm.c: hmc_tm the HMC MD part xchange_2fields.c: invert, invert_doublet, hmc_tm implements the MPI communication of two even/odd spinor fields at once xchange_deri.c: hmc_tm implements the MPI communication of derivatives xchange_field.c: invert, invert_doublet, hmc_tm implements the MPI communication of a single even/odd spinor field xchange_gauge.c: invert, invert_doublet, hmc_tm implements the MPI communication of the gauge field xchange_halffield.c: invert, invert_doublet, hmc_tm implements the MPI communication of a half spinor field xchange_lexicfield.c: invert, invert_doublet, hmc_tm implements the MPI communication of a single (full) spinor field **************************************************************************** the linalg directory: all routines here are compiled into the liblinalg runtime library capital letters are spinor fields, others scalars add.c: Q = R + S assign.c: R = S assign_add_mul.c: P = P + c Q with c complex assign_add_mul_r.c: P = P + c Q with c real assign_add_mul_add_mul.c: R = R + c1*S + c2*U with c1 and c2 complex variables assign_add_mul_add_mul_r.c: R = R + c1*S + c2*U with c1 and c2 real variables assign_diff_mul.c: S=S-c*Q assign_mul_add_mul_add_mul_add_mul_r.c: R = c1*R + c2*S + c3*U + c4*V with c1, c2, c3, c4 real variables assign_mul_add_mul_add_mul_r.c: R = c1*R + c2*S + c3*U with c1, c2 and c3 real variables assign_mul_add_mul_r.c: R = c1*R + c2*S , c1 and c2 are real constants assign_mul_add_r.c: R = c*R + S c is a real constant assign_mul_bra_add_mul_ket_add.c: R = c2*(R + c1*S) + (*U) with c1 and c2 complex variables assign_mul_bra_add_mul_ket_add_r.c: R = c2*(R + c1*S) + (*U) with c1 and c2 complex variables assign_mul_bra_add_mul_r.c: R = c1*(R + c2*S) with c1 and c2 complex variables comp_decomp.c: Splits the Bi-spinor R in the spinors S and T convert_eo_to_lexic.c: convert to even odd spinors to one full spinor diff.c: Q = R - S diff_and_square_norm.c: Q = R - S and ||Q||^2 mattimesvec.c: w = M*v for complex vectors w,v and and complex square matrix M mul.c: R = c*S, for complex c mul_r.c: R = c*S, for real c mul_add_mul.c: R = c1*S + c2*U , c1 and c2 are complex constants mul_add_mul_r.c R = c1*S + c2*U , c1 and c2 are real constants mul_diff_mul.c: R = c1*S - c2*U , c1 and c2 are complex constants mul_diff_mul_r.c R = c1*S - c2*U , c1 and c2 are real constants mul_diff_r.c R = c1*S - U , c1 is a real constant scalar_prod.c: c = (R, S) scalar_prod_i.c: c = Im(R, S) scalar_prod_r.c: c = Re(R, S) square_and_prod_r.c: Returns Re(R,S) and the square norm of S square_norm.c: c = ||Q||^2 **************************************************************************** solver directory: all routines here are compiled into the libsolver runtime library the solvers are for spinor fields, if not indicated otherwise. Msap.c: experimental SAP preconditioner bicgstab_complex.c: BiCGstab for complex fields bicgstabell.c: experimental cg_her.c : CG solver for hermitian operators cg_her_nd.c: CG solver for hermitian heavy doublet operators cgs_real.c: CGS solver chrono_guess.c: routines for the chronological solver dfl_projector.c: experimental diagonalise_general_matrix.c: subroutine to diagonalise a complex n times n matrix. Input is a complex matrix in _C_ like order. Output is again _C_ like. Uses lapack eigenvalues.c compute the nr_of_eigenvalues lowest eigenvalues of (gamma5*D)^2 fgmres.c: FGMRES (flexible GMRES) solver gcr.c: GCR solver gcr4complex.c: GCR solver for complex fields generate_dfl_subspace.c: experimental gmres.c: GMRES solver gmres_dr.c: GMRES-DR solver gmres_precon.c: GMRES usable for preconditioning other solvers (experimental) gram-schmidt.c: Gram-Schmidt orthonormalisation routines jdher.c: Jacobi Davidson for hermitian matrices (to compute EVs) lu_solve.c: compute the inverse of a matrix with LU decomposition mr.c: MR solver pcg_her.c: PCG solver poly_precon.c: polynomial preconditioner using Chebysheff polynomials with complex argument quicksort.c: a quicksort routine sub_low_ev.c: routines to subtract exactly computed eigenvectors from a given spinor field
Owner
- Name: Extended Twisted Mass Collaboration
- Login: etmc
- Kind: organization
- Location: Europe
- Website: http://www-zeuthen.desy.de/~kjansen/etmc/
- Repositories: 5
- Profile: https://github.com/etmc
Citation (CITATION.cff)
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!
cff-version: 1.2.0
title: tmLQCD
message: >-
If you use this software, please cite it using the
metadata from this file.
type: "software"
version: "5.9.3"
authors:
- given-names: "Carsten"
family-names: "Urbach"
email: "urbach@hiskp.uni-bonn.de"
affiliation: 'HISKP, University of Bonn'
orcid: 'https://orcid.org/0000-0003-1412-7582'
- given-names: "Bartosz"
family-names: "Kostrzewa"
email: "bkostrze@uni-bonn.de"
affiliation: >-
High Performance Computing and Analytics Lab,
University of Bonn
orcid: 'https://orcid.org/0000-0003-4434-6022'
- given-names: "Siebren"
family-names: "Reker"
- given-names: "Albert"
family-names: "Deuzeman"
- orcid: 'https://orcid.org/0000-0002-5532-450X'
given-names: "Simone"
family-names: "Bacchio"
email: "s.bacchio@cyi.ac.cy"
affiliation: "Cyprus Institute"
- given-names: "Mario"
family-names: "Schröck"
orcid: 'https://orcid.org/0000-0002-3058-1892'
- given-names: "Abdou"
family-names: "Abdel-Rehim"
orcid: 'https://orcid.org/0000-0001-8337-7214'
- given-names: "Martin"
family-names: "Ueding"
orcid: 'https://orcid.org/0000-0003-2341-1075'
- given-names: "Jacob"
family-names: "Finkenrath"
orcid: 'https://orcid.org/0000-0002-2122-2249'
affiliation: "University of Wuppertal"
email: "j.finkenrath@cyi.ac.cy"
- orcid: 'https://orcid.org/0000-0002-4508-6421'
given-names: "Marco"
family-names: "Garofalo"
email: "garofalo@hiskp.uni-bonn.de"
affiliation: 'HISKP, University of Bonn'
- given-names: "Simone"
family-names: "Romiti"
affiliation: 'HISKP, University of Bonn'
orcid: 'https://orcid.org/0000-0002-6509-447X'
email: "sromiti@uni-bonn.de"
- given-names: "Ferenc"
family-names: "Pittler"
affiliation: "Cyprus Institute"
orcid: 'https://orcid.org/0000-0003-4100-4289'
email: "f.pittler@cyi.ac.cy"
- given-names: "Andreas"
family-names: "Ammon"
- given-names: "Remi"
family-names: "Baron"
- given-names: "Benoit"
family-names: "Blossier"
- given-names: "Florian"
family-names: "Burger"
- given-names: "Thomas"
family-names: "Chiarappa"
- given-names: "Nils"
family-names: "Christian"
- given-names: "Elena"
family-names: "Garcia Ramos"
- given-names: "Jennifer"
family-names: "Gonzalez Lopez"
- given-names: "Gilbert"
family-names: "Grosdidier"
- given-names: "Karl"
family-names: "Jansen"
affiliation: 'DESY, Zeuthen'
- given-names: "Peter"
family-names: "Labus"
- given-names: "Joseph"
family-names: "Nagel"
- given-names: "David"
family-names: "Palao"
- given-names: "Olivier"
family-names: "Pene"
- given-names: "Marcus"
family-names: "Petschlies"
- given-names: "Dru"
family-names: "Renner"
- orcid: 'https://orcid.org/0000-0002-1333-745X'
given-names: "Francesco"
family-names: "Sanfilippo"
email: "francesco.sanfilippo@infn.it"
affiliation: 'INFN - Sezione Roma Tre '
- given-names: "Luigi"
family-names: "Scorzato"
- given-names: "Aniket"
family-names: "Sen"
email: "sen@hiskp.uni-bonn.de"
affiliation: 'HISKP, University of Bonn'
- given-names: "Andrea"
family-names: "Shindler"
- given-names: "Jan"
family-names: "Volkholz"
- given-names: "Urs"
family-names: "Wenger"
email: "wenger@itp.unibe.ch"
affiliation: 'Institute for Theoretical Physics, University of Bern'
orcid: 'https://orcid.org/0000-0002-7754-9590'
- given-names: "Falk"
family-names: "Zimmermann"
repository-code: 'https://github.com/etmc/tmLQCD'
abstract: >-
tmLQCD is a freely available software suite providing a
set of tools to be used in lattice QCD simulations. This
is mainly a HMC implementation (including PHMC and RHMC)
for Wilson, Wilson Clover and Wilson twisted mass fermions
and inverter for different versions of the Dirac
operator. The code is fully parallelised using OpenMP and
MPI and features interfaces to the lattice QCD libraries
QPhiX, DDalphaAMG and QUDA, allowing their highly
optimised operators and solvers to be used.
A key feature of tmLQCD is its easily human-readable input
file format which also allows tmLQCD to be used as a piece
of glue code from within other programs to employ the
solvers from these various libraries.
keywords:
- "lattice QCD"
- "HMC"
- "RHMC"
- "PHMC"
- "twisted mass"
- "wilson"
- "clover"
- "simulation"
- "GPU"
license: "GPL-3.0-or-later"
references:
- title: "tmLQCD: A Program suite to simulate Wilson Twisted mass Lattice QCD"
doi: "10.1016/j.cpc.2009.05.016"
type: "article"
authors:
- family-names: "Jansen"
given-names: "Karl"
- family-names: "Urbach"
given-names: "Carsten"
- title: "Experiences with OpenMP in tmLQCD"
doi: "10.22323/1.187.0416"
type: "conference-paper"
authors:
- family-names: "Deuzeman"
given-names: "Albert"
- family-names: "Jansen"
given-names: "Karl"
- family-names: "Kostrzewa"
given-names: "Bartosz"
- family-names: "Urbach"
given-names: "Carsten"
- title: "Recent developments in the tmLQCD software suite"
type: "conference-paper"
doi: "10.22323/1.187.0414"
authors:
- family-names: "Abdel-Rehim"
given-names: "Abdou"
- family-names: "Burger"
given-names: "Florian"
- family-names: "Deuzeman"
given-names: "Albert"
- family-names: "Jansen"
given-names: "Karl"
- family-names: "Kostrzewa"
given-names: "Bartosz"
- family-names: "Scorzato"
given-names: "Luigi"
- family-names: "Urbach"
given-names: "Carsten"
- title: "Adaptive Aggregation-based Domain Decomposition Multigrid for Twisted Mass Fermions"
type: "article"
doi: "10.1103/PhysRevD.94.114509"
authors:
- family-names: "Alexandrou"
given-names: "Constantia"
- family-names: "Bacchio"
given-names: "Simone"
- family-names: "Finkenrath"
given-names: "Jacob"
- family-names: "Frommer"
given-names: "Andreas"
- family-names: "Kahl"
given-names: "Karsten"
- family-names: "Rottmann"
given-names: "Matthias"
- title: "Multigrid approach in shifted linear systems for the non-degenerated twisted mass operator"
type: "article"
doi: "10.1016/j.cpc.2018.10.013"
authors:
- family-names: "Alexandrou"
given-names: "Constantia"
- family-names: "Bacchio"
given-names: "Simone"
- family-names: "Finkenrath"
given-names: "Jacob"
- title: "Multigrid accelerated simulations for Twisted Mass fermions"
type: "conference-paper"
doi: "10.1051/epjconf/201817502002"
authors:
- family-names: "Alexandrou"
given-names: "Constantia"
- family-names: "Bacchio"
given-names: "Simone"
- family-names: "Finkenrath"
given-names: "Jacob"
- title: "Twisted mass ensemble generation on GPU machines"
type: "conference-paper"
doi: "10.22323/1.430.0340"
authors:
- family-names: "Kostrzewa"
given-names: "Bartosz"
- family-names: "Bacchio"
given-names: "Simone"
- family-names: "Finkenrath"
given-names: "Jacob"
- family-names: "Garofalo"
given-names: "Marco"
- family-names: "Pittler"
given-names: "Ferenc"
- family-names: "Romiti"
given-names: "Simone"
- family-names: "Urbach"
given-names: "Carsten"
- title: "Lemon: an MPI parallel I/O library for data encapsulation using LIME"
type: "article"
doi: "10.1016/j.cpc.2012.01.016"
authors:
- family-names: "Deuzeman"
given-names: "Albert"
- family-names: "Reker"
given-names: "Sieberen"
- family-names: "Urbach"
given-names: "Carsten"
- title: "Lattice QCD on Intel Xeon Phi Coprocessors"
type: "article"
doi: "10.1007/978-3-642-38750-0_4"
authors:
- family-names: "Joó"
given-names: "Bálint"
- family-names: "Kalamkar"
given-names: "Dhiraj D."
- family-names: "Vaidyanathan"
given-names: "Karthikeyan"
- family-names: "Smelyanskiy"
given-names: "Mikhail"
- family-names: "Pamnany"
given-names: "Kiran"
- family-names: "Lee"
given-names: "Victor W."
- family-names: "Dubey"
given-names: "Pradeep"
- family-names: "Watson"
given-names: "William"
- title: "Accelerating Twisted Mass LQCD with QPhiX"
type: "conference-paper"
doi: "10.22323/1.251.0030"
authors:
- family-names: "Schröck"
given-names: "Mario"
- family-names: "Simula"
given-names: "Silvano"
- family-names: "Strelchenko"
given-names: "Alexei"
- title: "Solving Lattice QCD systems of equations using mixed precision solvers on GPUs"
type: "article"
doi: "10.1016/j.cpc.2010.05.002"
authors:
- family-names: "Clark"
given-names: "M.A."
- family-names: "Babich"
given-names: "Ronald"
- family-names: "Barros"
given-names: "Kipton"
- family-names: "Brower"
given-names: "Richard C."
- family-names: "Rebbi"
given-names: "Claudio"
- title: "Scaling Lattice QCD beyond 100 GPUs"
type: "conference-paper"
doi: "10.1145/2063384.2063478"
authors:
- family-names: "Babich"
given-names: "Ronald"
- family-names: "Clark"
given-names: "M.A."
- family-names: "Joó"
given-names: "Bálint"
- family-names: "Shi"
given-names: "G."
- family-names: "Brower"
given-names: "Richard C."
- family-names: "Gottlieb"
given-names: "Steven"
- title: "Accelerating Lattice QCD Multigrid on GPUs Using Fine-Grained Parallelization"
type: "conference-paper"
doi: "10.1109/SC.2016.67"
authors:
- family-names: "Clark"
given-names: "M.A."
- family-names: "Joó"
given-names: "Bálint"
- family-names: "Strelchenko"
given-names: "Alexei"
- family-names: "Cheng"
given-names: "Michael"
- family-names: "Gambir"
given-names: "Arjun"
- family-names: "Brower"
given-names: "Richard C."
- title: "LEMON"
type: "software"
repository-code: "https://github.com/etmc/lemon"
authors:
- name: "LEMON contributors"
- title: "lime"
type: "software"
repository-code: "https://github.com/usqcd-software/c-lime"
authors:
- name: "LIME contributors"
- title: "DDalphaAMG"
type: "software"
repository-code: "https://github.com/sbacchio/DDalphaAMG"
authors:
- name: "DDalphaAMG contributors"
- title: "QPhiX"
type: "software"
repository-code: "https://github.com/JeffersonLab/qphix"
authors:
- name: "QPhiX contributors"
- title: "QMP"
type: "software"
repository-code: "https://github.com/usqcd-software/qmp"
authors:
- name: "QMP contributors"
- title: "QUDA"
type: "software"
repository-code: "https://github.com/lattice/quda"
authors:
- name: "QUDA contributors"
GitHub Events
Total
- Issues event: 1
- Watch event: 7
- Delete event: 6
- Issue comment event: 21
- Push event: 17
- Pull request review comment event: 1
- Pull request review event: 3
- Pull request event: 19
- Fork event: 2
- Create event: 7
Last Year
- Issues event: 1
- Watch event: 7
- Delete event: 6
- Issue comment event: 21
- Push event: 17
- Pull request review comment event: 1
- Pull request review event: 3
- Pull request event: 19
- Fork event: 2
- Create event: 7
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 1
- Total pull requests: 10
- Average time to close issues: 2 days
- Average time to close pull requests: 5 months
- Total issue authors: 1
- Total pull request authors: 4
- Average comments per issue: 1.0
- Average comments per pull request: 2.5
- Merged pull requests: 8
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 9
- Average time to close issues: 2 days
- Average time to close pull requests: 10 days
- Issue authors: 1
- Pull request authors: 4
- Average comments per issue: 1.0
- Average comments per pull request: 1.67
- Merged pull requests: 7
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- kostrzewa (5)
- simone-romiti (1)
Pull Request Authors
- github-actions[bot] (22)
- kostrzewa (14)
- Marcogarofalo (5)
- gkanwar (2)
- simone-romiti (1)
- aniketsen (1)
- Finkenrath (1)