| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 | # StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2009, 2011, 2013-2014  Université de Bordeaux# Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015  CNRS# Copyright (C) 2014  INRIA## Permission is granted to copy, distribute and/or modify this document# under the terms of the GNU Free Documentation License, Version 1.3# or any later version published by the Free Software Foundation;# with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.## See the GNU Free Documentation License in COPYING.GFDL for more details.DOXYGEN = doxygenPDFLATEX = pdflatexMAKEINDEX = makeindexDOX_DIR = $(top_builddir)/doc/doxygenDOX_CONFIG = $(top_srcdir)/doc/doxygen/doxygen.cfgDOX_HTML_DIR = htmlDOX_LATEX_DIR = latexDOX_PDF = starpu.pdfDOX_TAG = starpu.tagchapters =	\	chapters/00introduction.doxy \	chapters/01building.doxy \	chapters/02basic_examples.doxy \	chapters/03advanced_examples.doxy \	chapters/05check_list_performance.doxy \	chapters/06tasks.doxy \	chapters/07data_management.doxy \	chapters/08scheduling.doxy \	chapters/09scheduling_contexts.doxy \	chapters/10scheduling_context_hypervisor.doxy \	chapters/11debugging_tools.doxy \	chapters/12online_performance_tools.doxy \	chapters/13offline_performance_tools.doxy \	chapters/14faq.doxy \	chapters/15out_of_core.doxy \	chapters/16mpi_support.doxy \	chapters/17fft_support.doxy \	chapters/18mic_scc_support.doxy \	chapters/19c_extensions.doxy \	chapters/20socl_opencl_extensions.doxy \	chapters/21simgrid.doxy \	chapters/22openmp_runtime_support.doxy \	chapters/23clustering_a_machine.doxy \	chapters/40environment_variables.doxy \	chapters/41configure_options.doxy \	chapters/45files.doxy \	chapters/50scaling-vector-example.doxy \	chapters/51fdl-1.3.doxy \	chapters/modularized_scheduler.doxy \	chapters/code/hello_pragma2.c \	chapters/code/hello_pragma.c \	chapters/code/scal_pragma.cu \	chapters/code/matmul_pragma.c \	chapters/code/matmul_pragma2.c \	chapters/code/cholesky_pragma.c \	chapters/code/forkmode.c \	chapters/code/multiformat.c \	chapters/code/complex.c \	chapters/code/simgrid.c \	chapters/code/vector_scal_c.c \	chapters/code/vector_scal_cpu.c \	chapters/code/vector_scal_cuda.cu \	chapters/code/vector_scal_opencl.c \	chapters/code/vector_scal_opencl_codelet.cl \	chapters/code/disk_copy.c \	chapters/code/disk_compute.c \	chapters/api/codelet_and_tasks.doxy \	chapters/api/cuda_extensions.doxy \	chapters/api/data_interfaces.doxy \	chapters/api/data_management.doxy \	chapters/api/data_partition.doxy \	chapters/api/data_out_of_core.doxy \	chapters/api/expert_mode.doxy \	chapters/api/explicit_dependencies.doxy \	chapters/api/fft_support.doxy \	chapters/api/fxt_support.doxy \	chapters/api/implicit_dependencies.doxy \	chapters/api/initialization.doxy \	chapters/api/insert_task.doxy \	chapters/api/lower_bound.doxy \	chapters/api/misc_helpers.doxy \	chapters/api/mpi.doxy \	chapters/api/multiformat_data_interface.doxy \	chapters/api/opencl_extensions.doxy \	chapters/api/openmp_runtime_support.doxy \	chapters/api/mic_extensions.doxy \	chapters/api/scc_extensions.doxy \	chapters/api/parallel_tasks.doxy \	chapters/api/performance_model.doxy \	chapters/api/profiling.doxy \	chapters/api/running_driver.doxy \	chapters/api/scheduling_contexts.doxy \	chapters/api/scheduling_policy.doxy \	chapters/api/standard_memory_library.doxy \	chapters/api/task_bundles.doxy \	chapters/api/task_lists.doxy \	chapters/api/top.doxy \	chapters/api/versioning.doxy \	chapters/api/workers.doxy \	chapters/api/threads.doxy \	chapters/api/bitmap.doxy \	chapters/api/tree.doxy \	chapters/api/toolbox.doxy \	chapters/api/sc_hypervisor/sc_hypervisor.doxy \	chapters/api/sc_hypervisor/sc_hypervisor_usage.doxy \	chapters/api/modularized_scheduler.doxystarpu_config.h: $(top_srcdir)/include/starpu_config.h.in	@$(SED) 's/#undef \(.*\)/#define \1 1/' $< > $@chapters/version.sty: $(chapters)	@for f in $(chapters) ; do \                if test -f $(top_srcdir)/doc/doxygen/$$f ; then $(PROG_STAT) --format=%Y $(top_srcdir)/doc/doxygen/$$f ; fi \        done | sort -r | head -1 > timestamp_sty	@if test -s timestamp_sty ; then \		LC_ALL=C $(PROG_DATE) --date=@`cat timestamp_sty` +"%d %B %Y" > timestamp_sty_updated ;\		LC_ALL=C $(PROG_DATE) --date=@`cat timestamp_sty` +"%B %Y" > timestamp_sty_updated_month ;\	fi	@if test -s timestamp_sty_updated ; then \		echo ':newcommand{:STARPUUPDATED}{'`cat timestamp_sty_updated`'}' > $(top_srcdir)/doc/doxygen/chapters/version.sty;\	else \		echo ':newcommand{:STARPUUPDATED}{unknown date}' > $(top_srcdir)/doc/doxygen/chapters/version.sty;\	fi	@echo ':newcommand{:STARPUVERSION}{$(VERSION)}' >> $(top_srcdir)/doc/doxygen/chapters/version.sty	@$(SED) -i 's/:/\\/g' $(top_srcdir)/doc/doxygen/chapters/version.sty	@for f in timestamp_sty timestamp_sty_updated timestamp_sty_updated_month ; do \		if test -f $$f ; then $(RM) $$f ; fi ;\	donechapters/version.html: $(chapters)	@for f in $(chapters) ; do \                if test -f $(top_srcdir)/doc/doxygen/$$f ; then $(PROG_STAT) --format=%Y $(top_srcdir)/doc/doxygen/$$f ; fi \        done | sort -r | head -1 > timestamp_html	@if test -s timestamp_html ; then \		LC_ALL=C $(PROG_DATE) --date=@`cat timestamp_html` +"%d %B %Y" > timestamp_html_updated ;\		LC_ALL=C $(PROG_DATE) --date=@`cat timestamp_html` +"%B %Y" > timestamp_html_updated_month ;\	fi	@echo "This manual documents the usage of StarPU version $(VERSION)." > $(top_srcdir)/doc/doxygen/chapters/version.html	@if test -s timestamp_html_updated ; then \		echo "Its contents was last updated on "`cat timestamp_html_updated`"." >> $(top_srcdir)/doc/doxygen/chapters/version.html;\	else \		echo "Its contents was last updated on <em>unknown_date</em>." >> $(top_srcdir)/doc/doxygen/chapters/version.html;\	fi	@for f in timestamp_html timestamp_html_updated timestamp_html_updated_month ; do \		if test -f $$f ; then $(RM) $$f ; fi ;\	doneEXTRA_DIST	= 					\	$(chapters) 					\	chapters/version.sty				\	chapters/version.html				\	chapters/data_trace.eps				\	chapters/data_trace.pdf				\	chapters/data_trace.png				\	chapters/distrib_data.png	\	chapters/distrib_data.eps	\	chapters/distrib_data.pdf	\	chapters/distrib_data_histo.png	\	chapters/distrib_data_histo.eps	\	chapters/distrib_data_histo.pdf	\	chapters/paje_draw_histogram.eps	\	chapters/paje_draw_histogram.png	\	chapters/paje_draw_histogram.pdf	\	chapters/parallel_worker1.eps		\	chapters/parallel_worker1.pdf		\	chapters/parallel_worker1.png		\	chapters/parallel_worker2.eps		\	chapters/parallel_worker2.pdf		\	chapters/parallel_worker2.png		\	chapters/runtime-par.eps			\	chapters/runtime-par.pdf			\	chapters/runtime-par.png			\	chapters/runtime-seq.eps			\	chapters/runtime-seq.pdf			\	chapters/runtime-seq.png			\	chapters/starpu_chol_model_11_type.png	\	chapters/starpu_chol_model_11_type.eps	\	chapters/starpu_chol_model_11_type.pdf	\	chapters/starpu_non_linear_memset_regression_based.png	\	chapters/starpu_non_linear_memset_regression_based.eps	\	chapters/starpu_non_linear_memset_regression_based.pdf	\	chapters/starpu_non_linear_memset_regression_based_2.png	\	chapters/starpu_non_linear_memset_regression_based_2.eps	\	chapters/starpu_non_linear_memset_regression_based_2.pdf	\	chapters/starpu_starpu_slu_lu_model_11.png	\	chapters/starpu_starpu_slu_lu_model_11.eps	\	chapters/starpu_starpu_slu_lu_model_11.pdf	\	chapters/tasks_size_overhead.png		\	chapters/tasks_size_overhead.eps		\	chapters/tasks_size_overhead.pdf		\	chapters/temanejo.png		\	doxygen.cfg 					\	refman.tex					\	$(DOX_HTML_DIR)dox_inputs = $(DOX_CONFIG) 				\	$(chapters) 					\	starpu_config.h					\	chapters/version.sty				\	chapters/version.html				\	$(top_srcdir)/include/starpu.h			\	$(top_srcdir)/include/starpu_data_filters.h	\	$(top_srcdir)/include/starpu_data_interfaces.h	\	$(top_srcdir)/include/starpu_disk.h		\	$(top_srcdir)/include/starpu_worker.h		\	$(top_srcdir)/include/starpu_task.h		\	$(top_srcdir)/include/starpu_task_bundle.h	\	$(top_srcdir)/include/starpu_task_list.h	\	$(top_srcdir)/include/starpu_task_util.h	\	$(top_srcdir)/include/starpu_data.h		\	$(top_srcdir)/include/starpu_perfmodel.h	\	$(top_srcdir)/include/starpu_util.h		\	$(top_srcdir)/include/starpu_fxt.h		\	$(top_srcdir)/include/starpu_cuda.h		\	$(top_srcdir)/include/starpu_opencl.h		\	$(top_srcdir)/include/starpu_openmp.h		\	$(top_srcdir)/include/starpu_sink.h		\	$(top_srcdir)/include/starpu_mic.h		\	$(top_srcdir)/include/starpu_scc.h		\	$(top_srcdir)/include/starpu_expert.h		\	$(top_srcdir)/include/starpu_profiling.h	\	$(top_srcdir)/include/starpu_bound.h		\	$(top_srcdir)/include/starpu_scheduler.h	\	$(top_srcdir)/include/starpu_sched_ctx.h	\	$(top_srcdir)/include/starpu_clusters_util.h			\	$(top_srcdir)/include/starpu_sched_ctx_hypervisor.h		\	$(top_srcdir)/include/starpu_top.h		\	$(top_srcdir)/include/starpu_hash.h		\	$(top_srcdir)/include/starpu_rand.h		\	$(top_srcdir)/include/starpu_cublas.h		\	$(top_srcdir)/include/starpu_driver.h		\	$(top_srcdir)/include/starpu_stdlib.h		\	$(top_srcdir)/include/starpu_thread.h		\	$(top_srcdir)/include/starpu_thread_util.h	\	$(top_srcdir)/mpi/include/starpu_mpi.h 		\	$(top_srcdir)/sc_hypervisor/include/sc_hypervisor.h 		\	$(top_srcdir)/sc_hypervisor/include/sc_hypervisor_config.h 	\	$(top_srcdir)/sc_hypervisor/include/sc_hypervisor_lp.h		\	$(top_srcdir)/sc_hypervisor/include/sc_hypervisor_monitoring.h	\	$(top_srcdir)/sc_hypervisor/include/sc_hypervisor_policy.h$(DOX_TAG): $(dox_inputs)	@rm -fr $(DOX_HTML_DIR) $(DOX_LATEX_DIR)	@$(DOXYGEN) $(DOX_CONFIG)	@$(SED) -i 's/ModuleDocumentation <\/li>/<a class="el" href="modules.html">Modules<\/a>/' html/index.html	@$(SED) -i 's/FileDocumentation <\/li>/<a class="el" href="files.html">Files<\/a>/' html/index.html        # comment for the line below: what we really want to do is to remove the line, but dy doing so, it avoids opening the interactive menu when browsing files	@if test -f html/navtree.js ; then $(SED) -i 's/\[ "Files", "Files.html", null \]/\[ "", "Files.html", null \]/' html/navtree.js ; fi	@$(SED) -i 's/.*"Files.html".*//' html/pages.html	@if test -f latex/main.tex ; then mv latex/main.tex latex/index.tex ; fi	@$(SED) -i '/\\begin{titlepage}/,$$d' $(DOX_LATEX_DIR)/refman.tex	@cat $(top_srcdir)/doc/doxygen/refman.tex >> $(DOX_LATEX_DIR)/refman.texdist_pdf_DATA = $(DOX_PDF)$(DOX_PDF): $(DOX_TAG) refman.tex	@cp $(top_srcdir)/doc/doxygen/chapters/version.sty $(DOX_LATEX_DIR)	@cp $(top_srcdir)/doc/doxygen/chapters/*pdf $(DOX_LATEX_DIR)	@echo $(PDFLATEX) $(DOX_LATEX_DIR)/refman.tex	@cd $(DOX_LATEX_DIR) ;\	rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out ;\	$(SED) -i -e 's/__env__/\\_Environment Variables!/' -e 's/\\-\\_\\-\\-\\_\\-env\\-\\_\\-\\-\\_\\-//' ExecutionConfigurationThroughEnvironmentVariables.tex ;\	$(SED) -i -e 's/__configure__/\\_Configure Options!/' -e 's/\\-\\_\\-\\-\\_\\-configure\\-\\_\\-\\-\\_\\-//' CompilationConfiguration.tex ;\	$(SED) -i s'/\\item Module\\-Documentation/\\item \\hyperlink{ModuleDocumentation}{Module Documentation}/' index.tex ;\	$(SED) -i s'/\\item File\\-Documentation/\\item \\hyperlink{FileDocumentation}{File Documentation}/' index.tex ;\	$(PDFLATEX) refman.tex > /dev/null ;\	$(MAKEINDEX) refman.idx > /dev/null 2>&1 ;\	$(PDFLATEX) refman.tex > /dev/null ;\	done=0; repeat=5 ;\	while test $$done = 0 -a $$repeat -gt 0; do \           if $(EGREP) 'Rerun (LaTeX|to get cross-references right)' refman.log > /dev/null 2>&1; then \	       $(PDFLATEX) refman.tex; \	       repeat=`expr $$repeat - 1`; \	   else \	       done=1; \	   fi; \	done	mv $(DOX_LATEX_DIR)/refman.pdf $(DOX_PDF)CLEANFILES = $(DOX_TAG) starpu_config.h \    -r \    $(DOX_HTML_DIR) \    $(DOX_LATEX_DIR) \    $(DOX_PDF)# Rule to update documentation on web server. Should only be used locally.PUBLISHHOST	?= gforgeupdate-web: $(DOX_PDF)	scp -pr starpu.pdf html $(PUBLISHHOST):/home/groups/starpu/htdocs/docshowcheck:	-cat /dev/null
 |