mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Starting a benchmarking sub dir
This commit is contained in:
parent
31fd146cc0
commit
4a1d4f1b3c
@ -1,4 +1,4 @@
|
|||||||
# additional include paths necessary to compile the C++ library
|
# additional include paths necessary to compile the C++ library
|
||||||
AM_CXXFLAGS = -I$(top_srcdir)/
|
AM_CXXFLAGS = -I$(top_srcdir)/
|
||||||
SUBDIRS = lib tests
|
SUBDIRS = lib tests benchmarks
|
||||||
|
|
||||||
|
@ -294,7 +294,7 @@ top_srcdir = @top_srcdir@
|
|||||||
|
|
||||||
# additional include paths necessary to compile the C++ library
|
# additional include paths necessary to compile the C++ library
|
||||||
AM_CXXFLAGS = -I$(top_srcdir)/
|
AM_CXXFLAGS = -I$(top_srcdir)/
|
||||||
SUBDIRS = lib tests
|
SUBDIRS = lib tests benchmarks
|
||||||
all: all-recursive
|
all: all-recursive
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
|
3
configure
vendored
3
configure
vendored
@ -5174,6 +5174,8 @@ ac_config_files="$ac_config_files lib/Makefile"
|
|||||||
|
|
||||||
ac_config_files="$ac_config_files tests/Makefile"
|
ac_config_files="$ac_config_files tests/Makefile"
|
||||||
|
|
||||||
|
ac_config_files="$ac_config_files benchmarks/Makefile"
|
||||||
|
|
||||||
cat >confcache <<\_ACEOF
|
cat >confcache <<\_ACEOF
|
||||||
# This file is a shell script that caches the results of configure
|
# This file is a shell script that caches the results of configure
|
||||||
# tests run on this system so they can be shared between configure
|
# tests run on this system so they can be shared between configure
|
||||||
@ -5916,6 +5918,7 @@ do
|
|||||||
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
||||||
"lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
|
"lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
|
||||||
"tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
|
"tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
|
||||||
|
"benchmarks/Makefile") CONFIG_FILES="$CONFIG_FILES benchmarks/Makefile" ;;
|
||||||
|
|
||||||
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
|
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
|
||||||
esac
|
esac
|
||||||
|
@ -80,4 +80,5 @@ AM_CONDITIONAL(BUILD_COMMS_NONE,[ test "X${ac_COMMS}X" == "XnoneX" ])
|
|||||||
AC_CONFIG_FILES(Makefile)
|
AC_CONFIG_FILES(Makefile)
|
||||||
AC_CONFIG_FILES(lib/Makefile)
|
AC_CONFIG_FILES(lib/Makefile)
|
||||||
AC_CONFIG_FILES(tests/Makefile)
|
AC_CONFIG_FILES(tests/Makefile)
|
||||||
|
AC_CONFIG_FILES(benchmarks/Makefile)
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
@ -5,7 +5,7 @@ AM_LDFLAGS = -L$(top_srcdir)/lib
|
|||||||
#
|
#
|
||||||
# Test code
|
# Test code
|
||||||
#
|
#
|
||||||
bin_PROGRAMS = Grid_main Grid_stencil Grid_nersc_io Grid_cshift Grid_gamma Grid_wilson Grid_simd
|
bin_PROGRAMS = Grid_main Grid_stencil Grid_nersc_io Grid_cshift Grid_gamma Grid_simd
|
||||||
|
|
||||||
Grid_main_SOURCES = Grid_main.cc
|
Grid_main_SOURCES = Grid_main.cc
|
||||||
Grid_main_LDADD = -lGrid
|
Grid_main_LDADD = -lGrid
|
||||||
@ -22,8 +22,5 @@ Grid_gamma_LDADD = -lGrid
|
|||||||
Grid_stencil_SOURCES = Grid_stencil.cc
|
Grid_stencil_SOURCES = Grid_stencil.cc
|
||||||
Grid_stencil_LDADD = -lGrid
|
Grid_stencil_LDADD = -lGrid
|
||||||
|
|
||||||
Grid_wilson_SOURCES = Grid_wilson.cc
|
|
||||||
Grid_wilson_LDADD = -lGrid
|
|
||||||
|
|
||||||
Grid_simd_SOURCES = Grid_simd.cc
|
Grid_simd_SOURCES = Grid_simd.cc
|
||||||
Grid_simd_LDADD = -lGrid
|
Grid_simd_LDADD = -lGrid
|
||||||
|
Loading…
x
Reference in New Issue
Block a user