mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
31a709a6b2
---------------------- ./configure.in ./configure ./test/iopipe.c Added check for system(3) ./config/freebsd2.2.1 ./config/linux Added -DH5D_DEBUG to the debug flags. ./src/H5D.c ./src/H5Dprivate.h ./src/H5P.c ./src/H5Ppublic.h ./src/H5Sprivate.h ./src/H5Ssimp.c ./html/Datasets.html Finally implemented strip mining in the I/O pipeline, placing a user-defined upper bound on the amount of temporary memory used by the pipeline. The default is 1MB type conversion and background buffers allocated/freed on demand. However, the size can be changed and/or application-allocated buffers supplied with H5Pset_buffers() called on the data transfer property list passed to H5Dread() and H5Dwrite(). Minor optimizations to H5Dread() and H5Dwrite(). More coming later... ./test/dsets.c Added calls to H5Pset_buffer() to test application-defined temporary buffers in the I/O pipeline. ./test/Makefile.in Removed `iopipe' from the list of confidence tests. Saying `make timings' in the test directory runs timing tests. I did this because (1) they don't really test anything new, and (2) they can take a long time to run.
110 lines
3.4 KiB
Makefile
110 lines
3.4 KiB
Makefile
# HDF5 Library Test Makefile(.in) -*- makefile -*-
|
|
#
|
|
# Copyright (C) 1997 National Center for Supercomputing Applications.
|
|
# All rights reserved.
|
|
#
|
|
#
|
|
@COMMENCE@
|
|
|
|
# Add include directory to the C preprocessor flags.
|
|
CPPFLAGS=-I. -I../src @CPPFLAGS@
|
|
|
|
# These are our main targets. They should be listed in the order to be
|
|
# executed, generally most specific tests to least specific tests.
|
|
PROGS=testhdf5 hyperslab istore dtypes dsets cmpd_dset extend external \
|
|
iopipe
|
|
TESTS=testhdf5 hyperslab istore dtypes dsets cmpd_dset extend external
|
|
TIMINGS=iopipe
|
|
|
|
# Temporary files
|
|
MOSTLYCLEAN=cmpd_dset.h5 dataset.h5 extend.h5 istore.h5 tfile1.h5 tfile2.h5 \
|
|
tfile3.h5 th5s1.h5 theap.h5 tohdr.h5 tstab1.h5 tstab2.h5 \
|
|
extern_1.h5 extern_2.h5 extern_3.h5 extern_1.raw extern_1b.raw \
|
|
extern_2.raw extern_2b.raw extern_3.raw extern_3b.raw \
|
|
extern_4.raw extern_4b.raw iopipe.raw iopipe.h5
|
|
|
|
# Source and object files for programs... The PROG_SRC list contains all the
|
|
# source files and is used for things like dependencies, archiving, etc. The
|
|
# other source lists are for the individual tests, the files of which may
|
|
# overlap with other tests.
|
|
PROG_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5s.c dtypes.c \
|
|
hyperslab.c istore.c dsets.c cmpd_dset.c extend.c external.c \
|
|
iopipe.c
|
|
PROG_OBJ=$(PROG_SRC:.c=.o)
|
|
|
|
TESTHDF5_SRC=testhdf5.c tfile.c theap.c tmeta.c tohdr.c tstab.c th5s.c
|
|
TESTHDF5_OBJ=$(TESTHDF5_SRC:.c=.o)
|
|
|
|
DSETS_SRC=dsets.c
|
|
DSETS_OBJ=$(DSETS_SRC:.c=.o)
|
|
|
|
DTYPES_SRC=dtypes.c
|
|
DTYPES_OBJ=$(DTYPES_SRC:.c=.o)
|
|
|
|
HYPERSLAB_SRC=hyperslab.c
|
|
HYPERSLAB_OBJ=$(HYPERSLAB_SRC:.c=.o)
|
|
|
|
ISTORE_SRC=istore.c
|
|
ISTORE_OBJ=$(ISTORE_SRC:.c=.o)
|
|
|
|
CMPD_DSET_SRC=cmpd_dset.c
|
|
CMPD_DSET_OBJ=$(CMPD_DSET_SRC:.c=.o)
|
|
|
|
EXTEND_SRC=extend.c
|
|
EXTEND_OBJ=$(EXTEND_SRC:.c=.o)
|
|
|
|
EXTERNAL_SRC=external.c
|
|
EXTERNAL_OBJ=$(EXTERNAL_SRC:.c=.o)
|
|
|
|
GRPTIME_SRC=grptime.c
|
|
GRPTIME_OBJ=$(GRPTIME_SRC:.c=.o)
|
|
|
|
IOPIPE_SRC=iopipe.c
|
|
IOPIPE_OBJ=$(IOPIPE_SRC:.c=.o)
|
|
|
|
# Private header files (not to be installed)...
|
|
PRIVATE_HDR=testhdf5.h
|
|
|
|
# Additional targets
|
|
.PHONY: timings _timings
|
|
timings _timings: $(TIMINGS)
|
|
@for timing in $(TIMINGS) dummy; do \
|
|
if test $$timing != dummy; then \
|
|
echo "Running $$timing $(TEST_FLAGS)"; \
|
|
$(RUNTEST) ./$$timing $(TEST_FLAGS) || exit 1; \
|
|
fi; \
|
|
done;
|
|
|
|
# How to build the programs...
|
|
testhdf5: $(TESTHDF5_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(TESTHDF5_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
dsets: $(DSETS_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(DSETS_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
dtypes: $(DTYPES_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(DTYPES_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
hyperslab: $(HYPERSLAB_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(HYPERSLAB_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
istore: $(ISTORE_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(ISTORE_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
cmpd_dset: $(CMPD_DSET_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(CMPD_DSET_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
extend: $(EXTEND_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(EXTEND_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
external: $(EXTERNAL_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(EXTERNAL_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
iopipe: $(IOPIPE_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(IOPIPE_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
grptime: $(GRPTIME_OBJ) ../src/libhdf5.a
|
|
$(CC) $(CFLAGS) -o $@ $(GRPTIME_OBJ) ../src/libhdf5.a $(LIBS)
|
|
|
|
@CONCLUDE@
|