mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r25940] HDFFV-9046: reorganize hdf5/perform, step 2
Move timing measurement routines used by h5perf and h5perf_serial to tools/lib so that they can be used by other tools too. tools/lib/io_timer.c tools/lib/io_timer.h tools/perform/io_timer.c tools/perform/io_timer.h renamed perform/io_timer.[ch] to lib/io_timer.[ch] tools/lib/Makefile.am tools/lib/Makefile.in tools/lib/CMakeLists.txt tools/perform/Makefile.in tools/perform/Makefile.am tools/perform/CMakeLists.txt MANIFEST updated due to the move. Tested; h5committest and jam (serial)
This commit is contained in:
parent
dcc956f594
commit
c803666ec2
4
MANIFEST
4
MANIFEST
@ -1295,6 +1295,8 @@
|
||||
./tools/lib/h5tools_type.c
|
||||
./tools/lib/ph5diff.h
|
||||
./tools/lib/h5tools_error.h
|
||||
./tools/lib/io_timer.c
|
||||
./tools/lib/io_timer.h
|
||||
|
||||
./tools/misc/Makefile.am
|
||||
./tools/misc/Makefile.in
|
||||
@ -2219,8 +2221,6 @@
|
||||
./tools/perform/pio_perf.h
|
||||
./tools/perform/pio_standalone.c
|
||||
./tools/perform/pio_standalone.h
|
||||
./tools/perform/io_timer.c
|
||||
./tools/perform/io_timer.h
|
||||
./tools/perform/sio_engine.c
|
||||
./tools/perform/sio_perf.c
|
||||
./tools/perform/sio_perf.h
|
||||
|
@ -24,6 +24,7 @@ set (H5_TOOLS_LIB_SRCS
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_type.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_utils.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5trav.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/io_timer.c
|
||||
)
|
||||
|
||||
set (H5_TOOLS_LIB_HDRS
|
||||
|
@ -28,7 +28,7 @@ noinst_LTLIBRARIES=libh5tools.la
|
||||
|
||||
libh5tools_la_SOURCES=h5tools.c h5tools_dump.c h5tools_str.c h5tools_utils.c h5diff.c \
|
||||
h5diff_array.c h5diff_attr.c h5diff_dset.c h5diff_util.c h5trav.c \
|
||||
h5tools_filters.c h5tools_ref.c h5tools_type.c
|
||||
h5tools_filters.c h5tools_ref.c h5tools_type.c io_timer.c
|
||||
|
||||
# Test program. Link using libhdf5 and libh5tools
|
||||
TEST_PROG=
|
||||
|
@ -115,7 +115,7 @@ libh5tools_la_LIBADD =
|
||||
am_libh5tools_la_OBJECTS = h5tools.lo h5tools_dump.lo h5tools_str.lo \
|
||||
h5tools_utils.lo h5diff.lo h5diff_array.lo h5diff_attr.lo \
|
||||
h5diff_dset.lo h5diff_util.lo h5trav.lo h5tools_filters.lo \
|
||||
h5tools_ref.lo h5tools_type.lo
|
||||
h5tools_ref.lo h5tools_type.lo io_timer.lo
|
||||
libh5tools_la_OBJECTS = $(am_libh5tools_la_OBJECTS)
|
||||
AM_V_lt = $(am__v_lt_@AM_V@)
|
||||
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
||||
@ -666,7 +666,7 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog
|
||||
noinst_LTLIBRARIES = libh5tools.la
|
||||
libh5tools_la_SOURCES = h5tools.c h5tools_dump.c h5tools_str.c h5tools_utils.c h5diff.c \
|
||||
h5diff_array.c h5diff_attr.c h5diff_dset.c h5diff_util.c h5trav.c \
|
||||
h5tools_filters.c h5tools_ref.c h5tools_type.c
|
||||
h5tools_filters.c h5tools_ref.c h5tools_type.c io_timer.c
|
||||
|
||||
|
||||
# Test program. Link using libhdf5 and libh5tools
|
||||
@ -773,6 +773,7 @@ distclean-compile:
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h5tools_type.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h5tools_utils.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/h5trav.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/io_timer.Plo@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
||||
|
@ -17,7 +17,6 @@ INCLUDE_DIRECTORIES (${HDF5_TOOLS_SRC_DIR}/lib )
|
||||
# --------------------------------------------------------------------
|
||||
#-- Adding test for h5perf_serial
|
||||
set (h5perf_serial_SRCS
|
||||
${HDF5_PERFORM_SOURCE_DIR}/io_timer.c
|
||||
${HDF5_PERFORM_SOURCE_DIR}/sio_perf.c
|
||||
${HDF5_PERFORM_SOURCE_DIR}/sio_engine.c
|
||||
)
|
||||
@ -30,7 +29,6 @@ set_target_properties (h5perf_serial PROPERTIES FOLDER perform)
|
||||
if (HDF5_BUILD_PERFORM_STANDALONE)
|
||||
#-- Adding test for h5perf_serial_alone
|
||||
set (h5perf_serial_alone_SRCS
|
||||
${HDF5_PERFORM_SOURCE_DIR}/io_timer.c
|
||||
${HDF5_PERFORM_SOURCE_DIR}/sio_perf.c
|
||||
${HDF5_PERFORM_SOURCE_DIR}/sio_engine.c
|
||||
)
|
||||
@ -99,7 +97,6 @@ set_target_properties (zip_perf PROPERTIES FOLDER perform)
|
||||
if (H5_HAVE_PARALLEL AND BUILD_TESTING)
|
||||
#-- Adding test for h5perf
|
||||
set (h5perf_SRCS
|
||||
${HDF5_PERFORM_SOURCE_DIR}/io_timer.c
|
||||
${HDF5_PERFORM_SOURCE_DIR}/pio_perf.c
|
||||
${HDF5_PERFORM_SOURCE_DIR}/pio_engine.c
|
||||
)
|
||||
@ -112,7 +109,6 @@ if (H5_HAVE_PARALLEL AND BUILD_TESTING)
|
||||
if (HDF5_BUILD_PERFORM_STANDALONE)
|
||||
#-- Adding test for h5perf
|
||||
set (h5perf_alone_SRCS
|
||||
${HDF5_PERFORM_SOURCE_DIR}/io_timer.c
|
||||
${HDF5_PERFORM_SOURCE_DIR}/pio_perf.c
|
||||
${HDF5_PERFORM_SOURCE_DIR}/pio_engine.c
|
||||
)
|
||||
|
@ -59,8 +59,8 @@ TEST_PROG = iopipe chunk overhead zip_perf perf_meta h5perf_serial $(BUILD_ALL_P
|
||||
# "make clean" and some systems, e.g., AIX, do not like it.
|
||||
check_PROGRAMS= iopipe chunk overhead zip_perf perf_meta $(BUILD_ALL_PROGS) perf
|
||||
|
||||
h5perf_SOURCES=pio_perf.c pio_engine.c io_timer.c
|
||||
h5perf_serial_SOURCES=sio_perf.c sio_engine.c io_timer.c
|
||||
h5perf_SOURCES=pio_perf.c pio_engine.c
|
||||
h5perf_serial_SOURCES=sio_perf.c sio_engine.c
|
||||
|
||||
# These are the files that `make clean' (and derivatives) will remove from
|
||||
# this directory.
|
||||
|
@ -130,15 +130,13 @@ AM_V_lt = $(am__v_lt_@AM_V@)
|
||||
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
||||
am__v_lt_0 = --silent
|
||||
am__v_lt_1 =
|
||||
am_h5perf_OBJECTS = pio_perf.$(OBJEXT) pio_engine.$(OBJEXT) \
|
||||
io_timer.$(OBJEXT)
|
||||
am_h5perf_OBJECTS = pio_perf.$(OBJEXT) pio_engine.$(OBJEXT)
|
||||
h5perf_OBJECTS = $(am_h5perf_OBJECTS)
|
||||
h5perf_DEPENDENCIES = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5)
|
||||
h5perf_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(h5perf_LDFLAGS) $(LDFLAGS) -o $@
|
||||
am_h5perf_serial_OBJECTS = sio_perf.$(OBJEXT) sio_engine.$(OBJEXT) \
|
||||
io_timer.$(OBJEXT)
|
||||
am_h5perf_serial_OBJECTS = sio_perf.$(OBJEXT) sio_engine.$(OBJEXT)
|
||||
h5perf_serial_OBJECTS = $(am_h5perf_serial_OBJECTS)
|
||||
h5perf_serial_DEPENDENCIES = $(LIBH5TOOLS) $(LIBH5TEST) $(LIBHDF5)
|
||||
h5perf_serial_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
||||
@ -723,8 +721,8 @@ h5perf_serial_LDFLAGS = $(LT_STATIC_EXEC) $(AM_LDFLAGS)
|
||||
@BUILD_PARALLEL_CONDITIONAL_TRUE@TEST_PROG_PARA = h5perf perf
|
||||
# Serial test programs.
|
||||
TEST_PROG = iopipe chunk overhead zip_perf perf_meta h5perf_serial $(BUILD_ALL_PROGS)
|
||||
h5perf_SOURCES = pio_perf.c pio_engine.c io_timer.c
|
||||
h5perf_serial_SOURCES = sio_perf.c sio_engine.c io_timer.c
|
||||
h5perf_SOURCES = pio_perf.c pio_engine.c
|
||||
h5perf_serial_SOURCES = sio_perf.c sio_engine.c
|
||||
|
||||
# These are the files that `make clean' (and derivatives) will remove from
|
||||
# this directory.
|
||||
@ -892,7 +890,6 @@ distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chunk.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/io_timer.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iopipe.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/overhead.Po@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/perf.Po@am__quote@
|
||||
|
Loading…
x
Reference in New Issue
Block a user