[svn-r3842] Purpose:

New feature
Description:
    Added a parallel HDF5 example.  make check knows how to
    run it in serial mode but not in parallel mode since the
    current makefile has no provision for parallel code execution.
    One would have to do it by hand (e.g., mpirun -np 2 ./ph4example)
Platforms tested:
    modi4 (serial and parallel)
This commit is contained in:
Albert Cheng 2001-04-24 15:06:02 -05:00
parent 3cd2537c60
commit dedcd52bbb
2 changed files with 1024 additions and 1 deletions

View File

@ -16,7 +16,8 @@ LIBHDF5=../src/libhdf5.la
## These are the programs that `make all' or `make tests' will build and which
## `make check' will run. List them in the order they should be run.
TEST_PROGS= h5_write h5_read h5_extend_write h5_chunk_read h5_compound \
h5_group h5_select h5_attribute h5_mount h5_reference
h5_group h5_select h5_attribute h5_mount h5_reference \
ph5example
## These are the files that `make clean' (and derivatives) will remove from
## this directory.
@ -62,4 +63,8 @@ h5_mount: h5_mount.lo
h5_reference: h5_reference.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ h5_reference.lo $(LIBHDF5) $(LDFLAGS) $(LIBS)
ph5example: ph5example.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ $@.lo $(LIBHDF5) $(LDFLAGS) $(LIBS)
@CONCLUDE@

1018
examples/ph5example.c Normal file

File diff suppressed because it is too large Load Diff