From 536f11db02cf839a0af52b6d33047ca1ee7c7b8d Mon Sep 17 00:00:00 2001 From: genaud Date: Fri, 10 Jul 2009 14:21:06 +0000 Subject: [PATCH] allreduce + scatter examples git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6469 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- examples/smpi/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/smpi/Makefile.am b/examples/smpi/Makefile.am index 807e1d757d..89143ad1c1 100644 --- a/examples/smpi/Makefile.am +++ b/examples/smpi/Makefile.am @@ -14,8 +14,10 @@ # /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 second mvmul ring_c split scatter reduce +allreduce: allreduce.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ bcast: bcast.c $(top_builddir)/src/smpi/smpicc $^ -o $@ bcbench: bcbench.c @@ -30,6 +32,8 @@ first: mvmul.c $(top_builddir)/src/smpi/smpicc $^ -o $@ second: second.c $(top_builddir)/src/smpi/smpicc $^ -o $@ +scatter: scatter.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ reduce: reduce.c $(top_builddir)/src/smpi/smpicc $^ -o $@ ring_c: ring_c.c -- 2.20.1