├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── devel_requires.txt ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── pyQCD.core.kernel.rst ├── pyQCD.core.rst └── pyQCD.rst ├── examples ├── solve_wilson_dirac_equation.py └── wilson_heatbath_gauge_update.py ├── install_requires.txt ├── pyQCD ├── CMakeLists.txt ├── __init__.py ├── algorithms │ ├── __init__.py │ ├── algorithms.cpp │ ├── algorithms.pxd │ ├── algorithms.pyx │ ├── conjugate_gradient.hpp │ ├── heatbath.hpp │ ├── linear_algebra.hpp │ └── solution_wrapper.hpp ├── benchmarks │ ├── CMakeLists.txt │ ├── bench_hopping_matrix.cpp │ ├── bench_lattice.cpp │ ├── bench_wilson_action.cpp │ └── helpers.hpp ├── cmake │ └── FindEigen3.cmake ├── core │ ├── CMakeLists.txt │ ├── __init__.py │ ├── aligned_allocator.hpp │ ├── atomics.pxd │ ├── core.cpp │ ├── core.pxd │ ├── core.pyx │ ├── lattice.hpp │ ├── lattice_expr.hpp │ ├── lattice_view.hpp │ ├── layout.cpp │ ├── layout.hpp │ └── qcd_types.hpp ├── fermions │ ├── __init__.py │ ├── fermion_action.hpp │ ├── fermions.cpp │ ├── fermions.pxd │ ├── fermions.pyx │ ├── hopping_matrix.hpp │ └── wilson_action.hpp ├── gauge │ ├── __init__.py │ ├── gauge.cpp │ ├── gauge.pxd │ ├── gauge.pyx │ ├── gauge_action.hpp │ ├── plaquette.hpp │ ├── rectangle.hpp │ ├── rectangle_action.hpp │ └── wilson_action.hpp ├── globals.hpp ├── templates │ ├── core │ │ ├── atomics.pxd │ │ ├── core.pxd │ │ ├── core.pyx │ │ ├── lattice.pxd │ │ ├── lattice.pyx │ │ ├── matrix.pxd │ │ ├── matrix.pyx │ │ ├── operators.pxd │ │ └── qcd_types.hpp │ ├── edit_warning.txt │ └── globals.hpp ├── tests │ ├── CMakeLists.txt │ ├── catch.hpp │ ├── helpers.hpp │ ├── test_algorithms.py │ ├── test_conjugate_gradient.cpp │ ├── test_core.py │ ├── test_fermions.py │ ├── test_gamma_matrices.cpp │ ├── test_gauge.py │ ├── test_heatbath.cpp │ ├── test_hopping_matrix.cpp │ ├── test_lattice.cpp │ ├── test_layout.cpp │ ├── test_main.cpp │ ├── test_random.cpp │ ├── test_rectangle_gauge_action.cpp │ ├── test_rectangle_heatbath_update.cpp │ ├── test_wilson_fermion_action.cpp │ ├── test_wilson_gauge_action.cpp │ └── test_wilson_heatbath_update.cpp └── utils │ ├── CMakeLists.txt │ ├── __init__.py │ ├── build │ ├── __init__.py │ ├── build_ext.py │ └── build_shared_clib.py │ ├── codegen │ ├── __init__.py │ └── typedefs.py │ ├── macros.hpp │ ├── math.hpp │ ├── matrices.cpp │ ├── matrices.hpp │ ├── random.cpp │ ├── random.hpp │ └── utils.pxd └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/README.md -------------------------------------------------------------------------------- /devel_requires.txt: -------------------------------------------------------------------------------- 1 | Cython==0.23.4 2 | Jinja2==2.7.3 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pyQCD.core.kernel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/docs/pyQCD.core.kernel.rst -------------------------------------------------------------------------------- /docs/pyQCD.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/docs/pyQCD.core.rst -------------------------------------------------------------------------------- /docs/pyQCD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/docs/pyQCD.rst -------------------------------------------------------------------------------- /examples/solve_wilson_dirac_equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/examples/solve_wilson_dirac_equation.py -------------------------------------------------------------------------------- /examples/wilson_heatbath_gauge_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/examples/wilson_heatbath_gauge_update.py -------------------------------------------------------------------------------- /install_requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/install_requires.txt -------------------------------------------------------------------------------- /pyQCD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/CMakeLists.txt -------------------------------------------------------------------------------- /pyQCD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyQCD/algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/algorithms/__init__.py -------------------------------------------------------------------------------- /pyQCD/algorithms/algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/algorithms/algorithms.cpp -------------------------------------------------------------------------------- /pyQCD/algorithms/algorithms.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/algorithms/algorithms.pxd -------------------------------------------------------------------------------- /pyQCD/algorithms/algorithms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/algorithms/algorithms.pyx -------------------------------------------------------------------------------- /pyQCD/algorithms/conjugate_gradient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/algorithms/conjugate_gradient.hpp -------------------------------------------------------------------------------- /pyQCD/algorithms/heatbath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/algorithms/heatbath.hpp -------------------------------------------------------------------------------- /pyQCD/algorithms/linear_algebra.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/algorithms/linear_algebra.hpp -------------------------------------------------------------------------------- /pyQCD/algorithms/solution_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/algorithms/solution_wrapper.hpp -------------------------------------------------------------------------------- /pyQCD/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /pyQCD/benchmarks/bench_hopping_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/benchmarks/bench_hopping_matrix.cpp -------------------------------------------------------------------------------- /pyQCD/benchmarks/bench_lattice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/benchmarks/bench_lattice.cpp -------------------------------------------------------------------------------- /pyQCD/benchmarks/bench_wilson_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/benchmarks/bench_wilson_action.cpp -------------------------------------------------------------------------------- /pyQCD/benchmarks/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/benchmarks/helpers.hpp -------------------------------------------------------------------------------- /pyQCD/cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /pyQCD/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/CMakeLists.txt -------------------------------------------------------------------------------- /pyQCD/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/__init__.py -------------------------------------------------------------------------------- /pyQCD/core/aligned_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/aligned_allocator.hpp -------------------------------------------------------------------------------- /pyQCD/core/atomics.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/atomics.pxd -------------------------------------------------------------------------------- /pyQCD/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/core.cpp -------------------------------------------------------------------------------- /pyQCD/core/core.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/core.pxd -------------------------------------------------------------------------------- /pyQCD/core/core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/core.pyx -------------------------------------------------------------------------------- /pyQCD/core/lattice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/lattice.hpp -------------------------------------------------------------------------------- /pyQCD/core/lattice_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/lattice_expr.hpp -------------------------------------------------------------------------------- /pyQCD/core/lattice_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/lattice_view.hpp -------------------------------------------------------------------------------- /pyQCD/core/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/layout.cpp -------------------------------------------------------------------------------- /pyQCD/core/layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/layout.hpp -------------------------------------------------------------------------------- /pyQCD/core/qcd_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/core/qcd_types.hpp -------------------------------------------------------------------------------- /pyQCD/fermions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/fermions/__init__.py -------------------------------------------------------------------------------- /pyQCD/fermions/fermion_action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/fermions/fermion_action.hpp -------------------------------------------------------------------------------- /pyQCD/fermions/fermions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/fermions/fermions.cpp -------------------------------------------------------------------------------- /pyQCD/fermions/fermions.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/fermions/fermions.pxd -------------------------------------------------------------------------------- /pyQCD/fermions/fermions.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/fermions/fermions.pyx -------------------------------------------------------------------------------- /pyQCD/fermions/hopping_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/fermions/hopping_matrix.hpp -------------------------------------------------------------------------------- /pyQCD/fermions/wilson_action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/fermions/wilson_action.hpp -------------------------------------------------------------------------------- /pyQCD/gauge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/__init__.py -------------------------------------------------------------------------------- /pyQCD/gauge/gauge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/gauge.cpp -------------------------------------------------------------------------------- /pyQCD/gauge/gauge.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/gauge.pxd -------------------------------------------------------------------------------- /pyQCD/gauge/gauge.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/gauge.pyx -------------------------------------------------------------------------------- /pyQCD/gauge/gauge_action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/gauge_action.hpp -------------------------------------------------------------------------------- /pyQCD/gauge/plaquette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/plaquette.hpp -------------------------------------------------------------------------------- /pyQCD/gauge/rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/rectangle.hpp -------------------------------------------------------------------------------- /pyQCD/gauge/rectangle_action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/rectangle_action.hpp -------------------------------------------------------------------------------- /pyQCD/gauge/wilson_action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/gauge/wilson_action.hpp -------------------------------------------------------------------------------- /pyQCD/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/globals.hpp -------------------------------------------------------------------------------- /pyQCD/templates/core/atomics.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/atomics.pxd -------------------------------------------------------------------------------- /pyQCD/templates/core/core.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/core.pxd -------------------------------------------------------------------------------- /pyQCD/templates/core/core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/core.pyx -------------------------------------------------------------------------------- /pyQCD/templates/core/lattice.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/lattice.pxd -------------------------------------------------------------------------------- /pyQCD/templates/core/lattice.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/lattice.pyx -------------------------------------------------------------------------------- /pyQCD/templates/core/matrix.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/matrix.pxd -------------------------------------------------------------------------------- /pyQCD/templates/core/matrix.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/matrix.pyx -------------------------------------------------------------------------------- /pyQCD/templates/core/operators.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/operators.pxd -------------------------------------------------------------------------------- /pyQCD/templates/core/qcd_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/core/qcd_types.hpp -------------------------------------------------------------------------------- /pyQCD/templates/edit_warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/edit_warning.txt -------------------------------------------------------------------------------- /pyQCD/templates/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/templates/globals.hpp -------------------------------------------------------------------------------- /pyQCD/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /pyQCD/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/catch.hpp -------------------------------------------------------------------------------- /pyQCD/tests/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/helpers.hpp -------------------------------------------------------------------------------- /pyQCD/tests/test_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_algorithms.py -------------------------------------------------------------------------------- /pyQCD/tests/test_conjugate_gradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_conjugate_gradient.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_core.py -------------------------------------------------------------------------------- /pyQCD/tests/test_fermions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_fermions.py -------------------------------------------------------------------------------- /pyQCD/tests/test_gamma_matrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_gamma_matrices.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_gauge.py -------------------------------------------------------------------------------- /pyQCD/tests/test_heatbath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_heatbath.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_hopping_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_hopping_matrix.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_lattice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_lattice.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_layout.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_main.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_random.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_rectangle_gauge_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_rectangle_gauge_action.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_rectangle_heatbath_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_rectangle_heatbath_update.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_wilson_fermion_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_wilson_fermion_action.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_wilson_gauge_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_wilson_gauge_action.cpp -------------------------------------------------------------------------------- /pyQCD/tests/test_wilson_heatbath_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/tests/test_wilson_heatbath_update.cpp -------------------------------------------------------------------------------- /pyQCD/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /pyQCD/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyQCD/utils/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/build/__init__.py -------------------------------------------------------------------------------- /pyQCD/utils/build/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/build/build_ext.py -------------------------------------------------------------------------------- /pyQCD/utils/build/build_shared_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/build/build_shared_clib.py -------------------------------------------------------------------------------- /pyQCD/utils/codegen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/codegen/__init__.py -------------------------------------------------------------------------------- /pyQCD/utils/codegen/typedefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/codegen/typedefs.py -------------------------------------------------------------------------------- /pyQCD/utils/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/macros.hpp -------------------------------------------------------------------------------- /pyQCD/utils/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/math.hpp -------------------------------------------------------------------------------- /pyQCD/utils/matrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/matrices.cpp -------------------------------------------------------------------------------- /pyQCD/utils/matrices.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/matrices.hpp -------------------------------------------------------------------------------- /pyQCD/utils/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/random.cpp -------------------------------------------------------------------------------- /pyQCD/utils/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/random.hpp -------------------------------------------------------------------------------- /pyQCD/utils/utils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/pyQCD/utils/utils.pxd -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mspraggs/pyQCD/HEAD/setup.py --------------------------------------------------------------------------------