1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
# StarPU --- Runtime system for heterogeneous multicore architectures.
#
# Copyright (C) 2009-2021 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
# Copyright (C) 2011 Télécom-SudParis
# Copyright (C) 2013 Simon Archipoff
#
# 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.
#
INPUT = @top_srcdir@/doc/doxygen/chapters \
@top_srcdir@/doc/doxygen/chapters/api \
@top_builddir@/doc/doxygen/starpu_config.h \
@top_srcdir@/include/starpu_bitmap.h \
@top_srcdir@/include/starpu_bound.h \
@top_srcdir@/include/starpu_clusters.h \
@top_srcdir@/include/starpu_cusparse.h \
@top_srcdir@/include/starpu_cublas.h \
@top_srcdir@/include/starpu_cublas_v2.h \
@top_srcdir@/include/starpu_cuda.h \
@top_srcdir@/include/starpu_data_filters.h \
@top_srcdir@/include/starpu_data.h \
@top_srcdir@/include/starpu_data_interfaces.h \
@top_srcdir@/include/starpu_deprecated_api.h \
@top_srcdir@/include/starpu_disk.h \
@top_srcdir@/include/starpu_driver.h \
@top_srcdir@/include/starpu_expert.h \
@top_srcdir@/include/starpu_fxt.h \
@top_srcdir@/include/starpu.h \
@top_srcdir@/include/starpu_hash.h \
@top_srcdir@/include/starpu_helper.h \
@top_srcdir@/include/starpu_mic.h \
@top_srcdir@/include/starpu_mpi_ms.h \
@top_srcdir@/include/starpu_mod.f90 \
@top_srcdir@/include/starpu_opencl.h \
@top_srcdir@/include/starpu_openmp.h \
@top_srcdir@/include/starpu_perfmodel.h \
@top_srcdir@/include/starpu_profiling.h \
@top_srcdir@/include/starpu_rand.h \
@top_srcdir@/include/starpu_sched_component.h \
@top_srcdir@/include/starpu_sched_ctx.h \
@top_srcdir@/include/starpu_sched_ctx_hypervisor.h \
@top_srcdir@/include/starpu_scheduler.h \
@top_srcdir@/include/starpu_simgrid_wrap.h \
@top_srcdir@/include/starpu_sink.h \
@top_srcdir@/include/starpu_stdlib.h \
@top_srcdir@/include/starpu_task_bundle.h \
@top_srcdir@/include/starpu_task.h \
@top_srcdir@/include/starpu_task_dep.h \
@top_srcdir@/include/starpu_task_list.h \
@top_srcdir@/include/starpu_task_util.h \
@top_srcdir@/include/starpu_thread.h \
@top_srcdir@/include/starpu_thread_util.h \
@top_srcdir@/include/starpu_tree.h \
@top_srcdir@/include/starpu_util.h \
@top_srcdir@/include/starpu_worker.h \
@top_srcdir@/include/fstarpu_mod.f90 \
@top_srcdir@/mpi/include/ \
@top_srcdir@/mpi/include/starpu_mpi.h \
@top_srcdir@/mpi/include/starpu_mpi_lb.h \
@top_srcdir@/mpi/include/fstarpu_mpi_mod.f90 \
@top_srcdir@/starpufft/include/starpufft.h \
@top_srcdir@/sc_hypervisor/include \
@top_srcdir@/sc_hypervisor/include/sc_hypervisor_config.h \
@top_srcdir@/sc_hypervisor/include/sc_hypervisor_policy.h \
@top_srcdir@/sc_hypervisor/include/sc_hypervisor_lp.h \
@top_srcdir@/sc_hypervisor/include/sc_hypervisor.h \
@top_srcdir@/sc_hypervisor/include/sc_hypervisor_monitoring.h \
@top_srcdir@/starpurm/include/starpurm.h \
@top_srcdir@/include/schedulers/starpu_heteroprio.h
EXAMPLE_PATH = @top_srcdir@/doc/doxygen \
@top_srcdir@/doc/doxygen/chapters \
@top_srcdir@/doc/doxygen/chapters/code
INPUT_FILTER = @top_builddir@/doc/doxygen/doxygen_filter.sh
#LATEX_HEADER = @top_srcdir@/doc/doxygen/refman.tex
IMAGE_PATH = @top_srcdir@/doc/doxygen/chapters/images
|