mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
4dba8522a1
not even SU(3) for now) gauge field. Convergence history is correctly indepdendent of decomposition on 1,2,4,8,16 mpi tasks. Found a couple of simd bugs which required fixed and enhanced the Grid_simd.cc test suite. Implemented the Mdag, M, MdagM, Meooe Mooee schur type stuff in the wilson dop.
25 lines
615 B
Makefile
25 lines
615 B
Makefile
# additional include paths necessary to compile the C++ library
|
|
AM_CXXFLAGS = -I$(top_srcdir)/lib
|
|
AM_LDFLAGS = -L$(top_builddir)/lib
|
|
|
|
#
|
|
# Test code
|
|
#
|
|
bin_PROGRAMS = Grid_wilson Grid_comms Grid_memory_bandwidth Grid_su3 Grid_wilson_cg_unprec
|
|
|
|
Grid_wilson_SOURCES = Grid_wilson.cc
|
|
Grid_wilson_LDADD = -lGrid
|
|
|
|
Grid_wilson_cg_unprec_SOURCES = Grid_wilson_cg_unprec.cc
|
|
Grid_wilson_cg_unprec_LDADD = -lGrid
|
|
|
|
Grid_comms_SOURCES = Grid_comms.cc
|
|
Grid_comms_LDADD = -lGrid
|
|
|
|
Grid_su3_SOURCES = Grid_su3.cc
|
|
Grid_su3_LDADD = -lGrid
|
|
|
|
Grid_memory_bandwidth_SOURCES = Grid_memory_bandwidth.cc
|
|
Grid_memory_bandwidth_LDADD = -lGrid
|
|
|