Skip to content
Snippets Groups Projects
Commit e5fde73f authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Add performance test of xmap creation via Fortran.

parent 4c508d4e
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,6 @@ Makefile.in
/libtool
/perf/perf_idxsection_get_positions_of_indices_run
/perf/perf_sparse_array_gather_run
/perf/perf_xmap_create
/perf/perf_xmap_create_run
/src/pkgconfig/yaxt.pc
/src/pkgconfig/yaxt_c.pc
......@@ -103,6 +102,8 @@ Makefile
/inst_headers/yaxt.h
/perf/perf_idxsection_get_positions_of_indices
/perf/perf_sparse_array_gather
/perf/perf_xmap_create
/perf/perf_xmap_create_f
/src/mpich_workaround.c
/src/ompi_workaround.c
/src/xtinclude_Makefile.inc
......
......@@ -47,8 +47,13 @@ EXTRA_PROGRAMS = \
if with_fortran
EXTRA_PROGRAMS += \
perf_sparse_array_gather
if xt_fc_hlf_struct_return
EXTRA_PROGRAMS += \
perf_xmap_create_f
endif
endif
noinst_PROGRAMS =
if with_perf_programs
noinst_PROGRAMS += $(EXTRA_PROGRAMS)
......@@ -64,6 +69,11 @@ perf_sparse_array_gather_LDADD = ../src/libyaxt.la ../src/libyaxt_c.la \
perf_xmap_create_SOURCES = perf_xmap_create.c
perf_xmap_create_f_SOURCES = perf_xmap_create_f.f90
perf_xmap_create_f_LDADD = ../src/libyaxt.la ../src/libyaxt_c.la \
$(MPI_FC_LIB)
perf_xmap_create_f.$(OBJEXT): perf_xmap_create_f.f90 ../src/libyaxt.la
AM_CFLAGS = -I../inst_headers $(MPI_C_INCLUDE)
AM_FCFLAGS = $(FC_MOD_FLAG)../inst_headers/f90 \
$(FPP_INCOPT)../include $(MPI_FC_MOD)
......@@ -80,7 +90,7 @@ FCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(FC) -static $(AM_FCFLAGS) $(FCFLAGS)
clean-local:
-rm -f *.i
-rm -f *.$(FCMODEXT) i.*.L *.i *.dbg
-rm -rf *.dSYM
# When an out-of-source build takes place, the 'distclean' recipe of the
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment