| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 | # StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2010-2012, 2015  Université de Bordeaux## StarPU is free software; you can redistribute it and/or modify# it under the terms of the GNU Lesser General Public License as published by# the Free Software Foundation; either version 2.1 of the License, or (at# your option) any later version.## StarPU is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.## See the GNU Lesser General Public License in COPYING.LGPL for more details.AM_CFLAGS = $(HWLOC_CFLAGS) $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(GLOBAL_AM_CFLAGS) -Wno-unusedLIBS = $(top_builddir)/src/@LIBSTARPU_LINK@ $(HWLOC_LIBS) @LIBS@AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_srcdir)/examples/ -I$(top_builddir)/includeAM_LDFLAGS = @STARPU_EXPORT_DYNAMIC@ $(STARPU_OPENCL_LDFLAGS) $(STARPU_CUDA_LDFLAGS) $(STARPU_COI_LDFLAGS) $(STARPU_SCIF_LDFLAGS)if USE_MPILIBS += $(top_builddir)/mpi/src/libstarpumpi-@STARPU_EFFECTIVE_VERSION@.laAM_CPPFLAGS += -I$(top_srcdir)/mpi/includeendifCC = $(CC_OR_MPICC)if STARPU_USE_CUDANVCCFLAGS += $(HWLOC_CFLAGS).cu.cubin:	$(MKDIR_P) `dirname $@`	$(NVCC) -cubin $< -o $@ --compiler-options -fno-strict-aliasing  $(NVCCFLAGS).cu.o:	$(MKDIR_P) `dirname $@`	$(NVCC) $< -c -o $@ --compiler-options -fno-strict-aliasing -I$(top_srcdir)/include/ -I$(top_builddir)/include/ $(NVCCFLAGS)endif###################################### What to install and what to check ######################################if STARPU_HAVE_WINDOWScheck_PROGRAMS	=	$(STARPU_EXAMPLES)elsecheck_PROGRAMS	=	$(LOADER) $(STARPU_EXAMPLES)endifTESTS		=	$(STARPU_EXAMPLES)if !STARPU_HAVE_WINDOWS## test loader programif !STARPU_CROSS_COMPILINGLOADER			=	loaderloader_CPPFLAGS 	= 	$(AM_CFLAGS) $(AM_CPPFLAGS) -I$(top_builddir)/src/LOADER_BIN		=	./$(LOADER)loader_SOURCES		=	../../tests/loader.celseLOADER			=LOADER_BIN		=	$(top_builddir)/examples/stencil/loader-cross.shendifif STARPU_HAVE_AM111TESTS_ENVIRONMENT	=	top_builddir="$(abs_top_builddir)" top_srcdir="$(abs_top_srcdir)"LOG_COMPILER		=	$(LOADER_BIN)elseTESTS_ENVIRONMENT	=	top_builddir="$(abs_top_builddir)" top_srcdir="$(abs_top_srcdir)" $(LOADER_BIN)endifendif#################### stencil example ####################STARPU_EXAMPLES =				\	stencilexamplebindir = $(libdir)/starpu/examples/stencilexamplebin_PROGRAMS =				\	stencilstencil_SOURCES =				\	life.c					\	stencil-kernels.c			\	stencil-tasks.c				\	stencil-blocks.c			\	stencil.cnoinst_HEADERS =				\	stencil.h				\	shadow.hif STARPU_USE_CUDAstencil_SOURCES +=				\	life_cuda.cu				\	shadow.cuendifif STARPU_USE_OPENCLstencil_SOURCES +=				\	life_opencl.c				\	shadow_opencl.cendifouts =						\	0.5.out					\	0.out					\	1.out					\	2.out					\	3.out					\	4.out					\	6.out					\	mpi.outEXTRA_DIST = $(outs) results run READMEpics: $(outs:.out=.xpm)CLEANFILES = *.xpm starpu_idle_microsec.log.out.out2:	grep '^|' $< | tr -d ' ' > $@.out2.xpm:	( width=$$(expr $$(head -n 1 < $< | wc -c) - 1) ; \	height=`wc -l < $<` ; \	echo "/* XPM */" ; \	echo "static char * test_xpm[] = {" ; \	echo "\"$$width $$height 9 1\"," ; \	echo "\"_	c None\"," ; \	echo "\"0	c #FF0000\"," ; \	echo "\"1	c #00FF00\"," ; \	echo "\"2	c #0000FF\"," ; \	echo "\"3	c #FFFF00\"," ; \	echo "\"4	c #FF00FF\"," ; \	echo "\"5	c #00FFFF\"," ; \	echo "\"|	c #FFFFFF\"," ; \	echo "\"*	c #000000\"," ; \	< $< sed -e 's/^/"/' -e 's/$$/",/' | sed -e '$$s/",$$/"};/' ) > $@view:	feh --zoom 800 -F 0.xpm 0.5.xpm 1.xpm 2.xpm 3.xpm 4.xpm 6.xpm mpi.xpmshowcheck:	-cat $(TEST_LOGS) /dev/null	! grep -q "ERROR: AddressSanitizer: " $(TEST_LOGS) /dev/null	! grep -q "WARNING: AddressSanitizer: " $(TEST_LOGS) /dev/null	! grep -q "ERROR: ThreadSanitizer: " $(TEST_LOGS) /dev/null	! grep -q "WARNING: ThreadSanitizer: " $(TEST_LOGS) /dev/null
 |