X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c4a789302148e98a58c9c50d2ab5244cf4a374ae..f7662638bcbfbf4922d5887273eb6645b1091479:/examples/smpi/Makefile.am diff --git a/examples/smpi/Makefile.am b/examples/smpi/Makefile.am index 83984e3726..0b11defa80 100644 --- a/examples/smpi/Makefile.am +++ b/examples/smpi/Makefile.am @@ -14,8 +14,16 @@ # /tools/tesh/README.tesh # - List the tesh file in the TESTS variable so that it gets tested on make check -noinst_PROGRAMS = bcast bcbench compute compute2 compute3 first second mvmul ring_c split reduce +noinst_PROGRAMS = allreduce bcast bcbench compute compute2 compute3 first pingpong second sendrecv mvmul split scatter reduce +alltoall2: alltoall2.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ +alltoall_basic: alltoall_basic.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ +alltoallv: alltoallv.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ +allreduce: allreduce.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ bcast: bcast.c $(top_builddir)/src/smpi/smpicc $^ -o $@ bcbench: bcbench.c @@ -28,23 +36,27 @@ compute3: compute3.c $(top_builddir)/src/smpi/smpicc $^ -o $@ first: mvmul.c $(top_builddir)/src/smpi/smpicc $^ -o $@ +pingpong: pingpong.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ second: second.c $(top_builddir)/src/smpi/smpicc $^ -o $@ -reduce: reduce.c +scatter: scatter.c $(top_builddir)/src/smpi/smpicc $^ -o $@ -ring_c: ring_c.c +reduce: reduce.c $(top_builddir)/src/smpi/smpicc $^ -o $@ split: split.c $(top_builddir)/src/smpi/smpicc $^ -o $@ mvmul: mvmul.c $(top_builddir)/src/smpi/smpicc $^ -o $@ +sendrecv: sendrecv.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ # List the tesh files below -TESTS = bcast.tesh +TESTS = bcast.tesh reduce.tesh # No need to change anything after that line TESTS_ENVIRONMENT = $(top_builddir)/tools/tesh/tesh -EXTRA_DIST = $(TESTS) +EXTRA_DIST = $(TESTS) hostfile CLEANFILES = *~ include $(top_srcdir)/acmacro/dist-files.mk