|
@@ -49,7 +49,7 @@ endif
|
|
|
|
|
|
AM_CFLAGS = -Wall $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(FXT_CFLAGS) $(MAGMA_CFLAGS) $(HWLOC_CFLAGS)
|
|
|
LIBS = $(top_builddir)/src/@LIBSTARPU_LINK@ @LIBS@ $(FXT_LIBS) $(MAGMA_LIBS)
|
|
|
-AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_builddir)/include -I$(top_srcdir)/mpi/include -I$(top_srcdir)/src -I$(top_builddir)/src
|
|
|
+AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_builddir)/include -I$(top_srcdir)/mpi/include -I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_srcdir)/examples/
|
|
|
AM_LDFLAGS = $(STARPU_OPENCL_LDFLAGS) $(STARPU_CUDA_LDFLAGS) $(FXT_LDFLAGS)
|
|
|
|
|
|
########################
|
|
@@ -77,7 +77,8 @@ check_PROGRAMS += \
|
|
|
insert_task_owner_data \
|
|
|
multiple_send \
|
|
|
mpi_scatter_gather \
|
|
|
- mpi_reduction
|
|
|
+ mpi_reduction \
|
|
|
+ user_defined_datatype
|
|
|
|
|
|
noinst_PROGRAMS = \
|
|
|
pingpong \
|
|
@@ -100,7 +101,8 @@ noinst_PROGRAMS = \
|
|
|
insert_task_owner_data \
|
|
|
multiple_send \
|
|
|
mpi_scatter_gather \
|
|
|
- mpi_reduction
|
|
|
+ mpi_reduction \
|
|
|
+ user_defined_datatype
|
|
|
|
|
|
mpi_isend_LDADD = \
|
|
|
../src/libstarpumpi-@STARPU_EFFECTIVE_VERSION@.la
|
|
@@ -144,6 +146,8 @@ mpi_scatter_gather_LDADD = \
|
|
|
../src/libstarpumpi-@STARPU_EFFECTIVE_VERSION@.la
|
|
|
mpi_reduction_LDADD = \
|
|
|
../src/libstarpumpi-@STARPU_EFFECTIVE_VERSION@.la
|
|
|
+user_defined_datatype_LDADD = \
|
|
|
+ ../src/libstarpumpi-@STARPU_EFFECTIVE_VERSION@.la
|
|
|
|
|
|
ring_SOURCES = ring.c
|
|
|
ring_async_SOURCES = ring_async.c
|
|
@@ -155,6 +159,8 @@ ring_async_implicit_SOURCES += ring_kernel.cu
|
|
|
endif
|
|
|
mpi_reduction_SOURCES = mpi_reduction.c
|
|
|
mpi_reduction_SOURCES += mpi_reduction_kernels.c
|
|
|
+user_defined_datatype_SOURCES = user_defined_datatype.c
|
|
|
+user_defined_datatype_SOURCES += $(top_srcdir)/examples/interface/complex_interface.c
|
|
|
|
|
|
showcheck:
|
|
|
-cat $(TEST_LOGS) /dev/null
|