Skip to content

Commit e92edf6

Browse files
committed
Merge branch 'develop' into master
* develop: (24 commits) Add LICENSE file Provide m4 macro for MPI compiler detection Declare used loop variables in a single line Simplify interface of get_*_info, ... functions Replace calloc with regular c array Remove unecessary comments and todos Remove unused verbose option Remove unnecessary comment headers Remove unused function declarations Distribute cmdline.ggo fixing error with distcheck Update documentation for command line usage and build system Remove HTML and LaTeX output Remove out commented code Remove superfluous documentation comment Remove not needed and undocumented start delay feature Switch to gengetopt generated command line parser Update README Cleanup configure.ac and remove acinclude.m4 Remove files generated/installed by autotools. Add basic .gitignore file for autotools and C compiler outputs ...
2 parents c22aedd + 336f498 commit e92edf6

18 files changed

+833
-5966
lines changed

.gitignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# vpath build directory
2+
3+
build
4+
5+
# http://www.gnu.org/software/automake
6+
7+
Makefile.in
8+
/ar-lib
9+
/mdate-sh
10+
/py-compile
11+
/test-driver
12+
/ylwrap
13+
.deps/
14+
.dirstamp
15+
16+
# http://www.gnu.org/software/autoconf
17+
18+
autom4te.cache
19+
/autoscan.log
20+
/autoscan-*.log
21+
/aclocal.m4
22+
/compile
23+
/config.guess
24+
/config.h.in
25+
/config.log
26+
/config.status
27+
/config.sub
28+
/configure
29+
/configure.scan
30+
/depcomp
31+
/install-sh
32+
/missing
33+
/stamp-h1
34+
35+
# https://www.gnu.org/software/libtool/
36+
37+
/ltmain.sh
38+
39+
# http://www.gnu.org/software/texinfo
40+
41+
/texinfo.tex
42+
43+
# http://www.gnu.org/software/m4/
44+
45+
m4/libtool.m4
46+
m4/ltoptions.m4
47+
m4/ltsugar.m4
48+
m4/ltversion.m4
49+
m4/lt~obsolete.m4
50+
51+
# Generated Makefile
52+
# (meta build system like autotools,
53+
# can automatically generate from config.status script
54+
# (which is called by configure script))
55+
Makefile
56+
57+
# Object files
58+
*.o

LICENSE

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
Copyright (c) 2003-2020 High Performance Computing Center Stuttgart,
2+
University of Stuttgart. All rights reserved.
3+
Copyright (c) 2005-2009 The University of Tennessee and The University
4+
of Tennessee Research Foundation. All rights
5+
reserved.
6+
Copyright (c) 2007 The Trustees of Indiana University and Indiana
7+
University Research and Technology
8+
Corporation. All rights reserved.
9+
Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
10+
11+
$COPYRIGHT$
12+
13+
Additional copyrights may follow
14+
15+
$HEADER$
16+
17+
Redistribution and use in source and binary forms, with or without
18+
modification, are permitted provided that the following conditions are
19+
met:
20+
21+
- Redistributions of source code must retain the above copyright
22+
notice, this list of conditions and the following disclaimer.
23+
24+
- Redistributions in binary form must reproduce the above copyright
25+
notice, this list of conditions and the following disclaimer listed
26+
in this license in the documentation and/or other materials
27+
provided with the distribution.
28+
29+
- Neither the name of the copyright holders nor the names of its
30+
contributors may be used to endorse or promote products derived from
31+
this software without specific prior written permission.
32+
33+
The copyright holders provide no reassurances that the source code
34+
provided does not infringe any patent, copyright, or any other
35+
intellectual property rights of third parties. The copyright holders
36+
disclaim any liability to any recipient for claims brought against
37+
recipient by any third party for infringement of that parties
38+
intellectual property rights.
39+
40+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
41+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
42+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
43+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
44+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
46+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
47+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
48+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
49+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
50+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Makefile.am

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
## Process this file with automake to produce Makefile.in
2+
3+
bin_PROGRAMS = mpi_test_suite
4+
5+
EXTRA_DIST = cmdline.ggo
6+
7+
cmdline.c cmdline.h: cmdline.ggo
8+
gengetopt < $<
9+
10+
mpi_test_suite_SOURCES = \
11+
cmdline.c \
12+
cmdline.h \
13+
coll/tst_coll_allgather.c \
14+
coll/tst_coll_allgather_in_place.c \
15+
coll/tst_coll_allreduce.c \
16+
coll/tst_coll_allreduce_in_place.c \
17+
coll/tst_coll_allreduce_max.c \
18+
coll/tst_coll_allreduce_min.c \
19+
coll/tst_coll_allreduce_quadsum.c \
20+
coll/tst_coll_allreduce_sum.c \
21+
coll/tst_coll_alltoall.c \
22+
coll/tst_coll_bcast.c \
23+
coll/tst_coll_gather.c \
24+
coll/tst_coll_reduce_in_place_max.c \
25+
coll/tst_coll_reduce_in_place_min.c \
26+
coll/tst_coll_reduce_max.c \
27+
coll/tst_coll_reduce_min.c \
28+
coll/tst_coll_scan_sum.c \
29+
coll/tst_coll_scatter.c \
30+
coll/tst_coll_scatterv.c \
31+
coll/tst_coll_scatterv_stride.c \
32+
compile_info.h \
33+
dynamic/tst_comm_spawn.c \
34+
dynamic/tst_comm_spawn_multiple.c \
35+
dynamic/tst_establish_communication.c \
36+
env/tst_env_get_version.c \
37+
env/tst_env_request_null.c \
38+
env/tst_env_status_check.c \
39+
env/tst_env_type_dup.c \
40+
io/tst_file_append_mode.c \
41+
io/tst_file_asyncio_atomic.c \
42+
io/tst_file_io_atomic.c \
43+
io/tst_file_io_commself.c \
44+
io/tst_file_io_sync.c \
45+
io/tst_file_io_with_arrange.c \
46+
io/tst_file_io_with_hole2.c \
47+
io/tst_file_io_with_hole.c \
48+
io/tst_file_iread_at.c \
49+
io/tst_file_iread.c \
50+
io/tst_file_iread_shared.c \
51+
io/tst_file_iwrite_at.c \
52+
io/tst_file_iwrite.c \
53+
io/tst_file_iwrite_shared.c \
54+
io/tst_file_preallocate.c \
55+
io/tst_file_read_all_begin.c \
56+
io/tst_file_read_all.c \
57+
io/tst_file_read_at_all_begin.c \
58+
io/tst_file_read_at_all.c \
59+
io/tst_file_read_at.c \
60+
io/tst_file_read.c \
61+
io/tst_file_read_convert.c \
62+
io/tst_file_read_darray.c \
63+
io/tst_file_read_ordered_begin.c \
64+
io/tst_file_read_ordered.c \
65+
io/tst_file_read_shared.c \
66+
io/tst_file_read_subarray.c \
67+
io/tst_file_sequential_mode.c \
68+
io/tst_file_set_size.c \
69+
io/tst_file_simple.c \
70+
io/tst_file_write_all_begin.c \
71+
io/tst_file_write_all.c \
72+
io/tst_file_write_at_all_begin.c \
73+
io/tst_file_write_at_all.c \
74+
io/tst_file_write_at.c \
75+
io/tst_file_write.c \
76+
io/tst_file_write_darray.c \
77+
io/tst_file_write_ordered_begin.c \
78+
io/tst_file_write_ordered.c \
79+
io/tst_file_write_shared.c \
80+
io/tst_file_write_subarray.c \
81+
mpi_test_suite.c \
82+
mpi_test_suite.h \
83+
one-sided/tst_accumulate_with_fence_sum.c \
84+
one-sided/tst_accumulate_with_lock_max.c \
85+
one-sided/tst_accumulate_with_post_min.c \
86+
one-sided/tst_get_with_fence.c \
87+
one-sided/tst_get_with_lock.c \
88+
one-sided/tst_get_with_post.c \
89+
one-sided/tst_one_sided_simple_ring_get.c \
90+
one-sided/tst_one_sided_simple_ring_get_post.c \
91+
one-sided/tst_one_sided_simple_ring_put.c \
92+
one-sided/tst_put_with_fence.c \
93+
one-sided/tst_put_with_lock.c \
94+
one-sided/tst_put_with_post.c \
95+
p2p/tst_p2p_alltoall.c \
96+
p2p/tst_p2p_alltoall_graph.c \
97+
p2p/tst_p2p_alltoall_irsend.c \
98+
p2p/tst_p2p_alltoall_issend.c \
99+
p2p/tst_p2p_alltoall_persistent.c \
100+
p2p/tst_p2p_alltoall_probe_anysource.c \
101+
p2p/tst_p2p_alltoall_sendrecv.c \
102+
p2p/tst_p2p_alltoall_xisend.c \
103+
p2p/tst_p2p_direct_partner_intercomm.c \
104+
p2p/tst_p2p_many_to_one.c \
105+
p2p/tst_p2p_many_to_one_iprobe_anysource.c \
106+
p2p/tst_p2p_many_to_one_isend_cancel.c \
107+
p2p/tst_p2p_many_to_one_probe_anysource.c \
108+
p2p/tst_p2p_simple_ring_bottom.c \
109+
p2p/tst_p2p_simple_ring_bsend.c \
110+
p2p/tst_p2p_simple_ring.c \
111+
p2p/tst_p2p_simple_ring_ibsend.c \
112+
p2p/tst_p2p_simple_ring_irsend.c \
113+
p2p/tst_p2p_simple_ring_isend.c \
114+
p2p/tst_p2p_simple_ring_issend.c \
115+
p2p/tst_p2p_simple_ring_pack.c \
116+
p2p/tst_p2p_simple_ring_persistent.c\
117+
p2p/tst_p2p_simple_ring_rsend.c \
118+
p2p/tst_p2p_simple_ring_sendrecv.c \
119+
p2p/tst_p2p_simple_ring_shift.c \
120+
p2p/tst_p2p_simple_ring_ssend.c \
121+
p2p/tst_p2p_simple_ring_xsend.c \
122+
threaded/tst_threaded_comm_dup.c \
123+
threaded/tst_threaded_ring_bsend.c \
124+
threaded/tst_threaded_ring.c \
125+
threaded/tst_threaded_ring_isend.c \
126+
threaded/tst_threaded_ring_persistent.c \
127+
tst_comm.c \
128+
tst_comm.h \
129+
tst_file.c \
130+
tst_output.c \
131+
tst_output.h \
132+
tst_tests.c \
133+
tst_threads.c \
134+
tst_threads.h \
135+
tst_types.c
136+

0 commit comments

Comments
 (0)