123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- # StarPU --- Runtime system for heterogeneous multicore architectures.
- #
- # Copyright (C) 2009-2015 Université de Bordeaux
- # Copyright (C) 2010, 2011, 2012, 2013, 2015 CNRS
- # Copyright (C) 2011, 2014 INRIA
- #
- # 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.
- SUBDIRS =
- CLEANFILES = *.gcno *.gcda *.linkinfo
- EXTRA_DIST = dolib.c
- ldflags =
- libstarpu_so_version = $(LIBSTARPU_INTERFACE_CURRENT):$(LIBSTARPU_INTERFACE_REVISION):$(LIBSTARPU_INTERFACE_AGE)
- if STARPU_HAVE_WINDOWS
- LC_MESSAGES=C
- export LC_MESSAGES
- ldflags += -Xlinker --output-def -Xlinker .libs/libstarpu-@STARPU_EFFECTIVE_VERSION@.def
- if STARPU_HAVE_MS_LIB
- .libs/libstarpu-@STARPU_EFFECTIVE_VERSION@.lib: libstarpu-@STARPU_EFFECTIVE_VERSION@.la dolib
- ./dolib "$(STARPU_MS_LIB)" $(STARPU_MS_LIB_ARCH) .libs/libstarpu-@STARPU_EFFECTIVE_VERSION@.def @STARPU_EFFECTIVE_VERSION@ $(libstarpu_so_version) .libs/libstarpu-@STARPU_EFFECTIVE_VERSION@.lib
- all-local: .libs/libstarpu-@STARPU_EFFECTIVE_VERSION@.lib
- endif STARPU_HAVE_MS_LIB
- install-exec-hook:
- $(INSTALL) .libs/libstarpu-@STARPU_EFFECTIVE_VERSION@.def $(DESTDIR)$(libdir)
- if STARPU_HAVE_MS_LIB
- $(INSTALL) .libs/libstarpu-@STARPU_EFFECTIVE_VERSION@.lib $(DESTDIR)$(libdir)
- $(INSTALL) .libs/libstarpu-@STARPU_EFFECTIVE_VERSION@.exp $(DESTDIR)$(libdir)
- endif STARPU_HAVE_MS_LIB
- endif STARPU_HAVE_WINDOWS
- lib_LTLIBRARIES = libstarpu-@STARPU_EFFECTIVE_VERSION@.la
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_CPPFLAGS = -I$(top_srcdir)/include/ -DBUILDING_STARPU $(GLOBAL_AM_CFLAGS) $(HWLOC_CFLAGS) $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(FXT_CFLAGS) $(STARPU_COI_CPPFLAGS) $(STARPU_SCIF_CPPFLAGS) $(STARPU_RCCE_CFLAGS) $(STARPU_RCCE_CPPFLAGS) -DSTARPU_DATADIR='"$(datadir)"'
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_LIBADD = -lm $(HWLOC_LIBS) $(STARPU_OPENCL_LDFLAGS) $(STARPU_CUDA_LDFLAGS) $(FXT_LIBS) $(STARPU_GLPK_LDFLAGS) $(STARPU_COI_LDFLAGS) $(STARPU_SCIF_LDFLAGS) $(STARPU_RCCE_LDFLAGS) $(STARPU_LEVELDB_LDFLAGS)
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_LDFLAGS = $(ldflags) $(FXT_LDFLAGS) -no-undefined \
- -version-info $(libstarpu_so_version)
- noinst_HEADERS = \
- core/dependencies/data_concurrency.h \
- core/dependencies/cg.h \
- core/dependencies/tags.h \
- core/dependencies/implicit_data_deps.h \
- core/disk.h \
- core/disk_ops/unistd/disk_unistd_global.h \
- core/progress_hook.h \
- core/sched_policy.h \
- core/sched_ctx.h \
- core/sched_ctx_list.h \
- core/perfmodel/perfmodel.h \
- core/perfmodel/regression.h \
- core/jobs.h \
- core/task.h \
- core/workers.h \
- core/topology.h \
- core/debug.h \
- core/errorcheck.h \
- core/combined_workers.h \
- core/simgrid.h \
- core/task_bundle.h \
- core/detect_combined_workers.h \
- sched_policies/helper_mct.h \
- sched_policies/fifo_queues.h \
- sched_policies/deque_queues.h \
- sched_policies/stack_queues.h \
- datawizard/footprint.h \
- datawizard/datawizard.h \
- datawizard/data_request.h \
- datawizard/filters.h \
- datawizard/write_back.h \
- datawizard/datastats.h \
- datawizard/malloc.h \
- datawizard/memstats.h \
- datawizard/memory_manager.h \
- datawizard/memalloc.h \
- datawizard/copy_driver.h \
- datawizard/coherency.h \
- datawizard/sort_data_handles.h \
- datawizard/memory_nodes.h \
- datawizard/interfaces/data_interface.h \
- common/barrier.h \
- common/timing.h \
- common/list.h \
- common/rwlock.h \
- common/starpu_spinlock.h \
- common/fxt.h \
- common/utils.h \
- common/thread.h \
- common/barrier.h \
- common/uthash.h \
- common/barrier_counter.h \
- drivers/driver_common/driver_common.h \
- drivers/mp_common/mp_common.h \
- drivers/mp_common/source_common.h \
- drivers/mp_common/sink_common.h \
- drivers/cpu/driver_cpu.h \
- drivers/cuda/driver_cuda.h \
- drivers/opencl/driver_opencl.h \
- drivers/opencl/driver_opencl_utils.h \
- debug/starpu_debug_helpers.h \
- drivers/mic/driver_mic_common.h \
- drivers/mic/driver_mic_source.h \
- drivers/mic/driver_mic_sink.h \
- drivers/scc/driver_scc_common.h \
- drivers/scc/driver_scc_source.h \
- drivers/scc/driver_scc_sink.h \
- drivers/disk/driver_disk.h \
- debug/traces/starpu_fxt.h \
- profiling/bound.h \
- profiling/profiling.h \
- util/openmp_runtime_support.h \
- util/starpu_task_insert_utils.h \
- util/starpu_data_cpy.h \
- starpu_parameters.h \
- top/starpu_top_message_queue.h \
- top/starpu_top_connection.h \
- top/starpu_top_core.h \
- sched_policies/prio_deque.h \
- sched_policies/sched_component.h
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES = \
- common/barrier.c \
- common/barrier_counter.c \
- common/bitmap.c \
- common/hash.c \
- common/rwlock.c \
- common/starpu_spinlock.c \
- common/timing.c \
- common/fxt.c \
- common/utils.c \
- common/thread.c \
- core/jobs.c \
- core/task.c \
- core/task_bundle.c \
- core/tree.c \
- core/workers.c \
- core/combined_workers.c \
- core/topology.c \
- core/disk.c \
- core/debug.c \
- core/errorcheck.c \
- core/progress_hook.c \
- core/dependencies/cg.c \
- core/dependencies/dependencies.c \
- core/dependencies/implicit_data_deps.c \
- core/dependencies/tags.c \
- core/dependencies/task_deps.c \
- core/dependencies/data_concurrency.c \
- core/dependencies/data_arbiter_concurrency.c \
- core/disk_ops/disk_stdio.c \
- core/disk_ops/disk_unistd.c \
- core/disk_ops/unistd/disk_unistd_global.c \
- core/perfmodel/perfmodel_history.c \
- core/perfmodel/perfmodel_bus.c \
- core/perfmodel/perfmodel.c \
- core/perfmodel/perfmodel_print.c \
- core/perfmodel/perfmodel_nan.c \
- core/perfmodel/regression.c \
- core/sched_policy.c \
- core/simgrid.c \
- core/sched_ctx.c \
- core/sched_ctx_list.c \
- core/parallel_task.c \
- core/detect_combined_workers.c \
- sched_policies/eager_central_policy.c \
- sched_policies/eager_central_priority_policy.c \
- sched_policies/work_stealing_policy.c \
- sched_policies/locality_work_stealing_policy.c \
- sched_policies/deque_modeling_policy_data_aware.c \
- sched_policies/random_policy.c \
- sched_policies/stack_queues.c \
- sched_policies/deque_queues.c \
- sched_policies/fifo_queues.c \
- sched_policies/parallel_heft.c \
- sched_policies/parallel_eager.c \
- drivers/driver_common/driver_common.c \
- drivers/disk/driver_disk.c \
- datawizard/memory_nodes.c \
- datawizard/write_back.c \
- datawizard/coherency.c \
- datawizard/data_request.c \
- datawizard/datawizard.c \
- datawizard/copy_driver.c \
- datawizard/filters.c \
- datawizard/sort_data_handles.c \
- datawizard/malloc.c \
- datawizard/memory_manager.c \
- datawizard/memalloc.c \
- datawizard/memstats.c \
- datawizard/footprint.c \
- datawizard/datastats.c \
- datawizard/user_interactions.c \
- datawizard/reduction.c \
- datawizard/interfaces/data_interface.c \
- datawizard/interfaces/bcsr_interface.c \
- datawizard/interfaces/coo_interface.c \
- datawizard/interfaces/csr_interface.c \
- datawizard/interfaces/matrix_filters.c \
- datawizard/interfaces/matrix_interface.c \
- datawizard/interfaces/block_filters.c \
- datawizard/interfaces/block_interface.c \
- datawizard/interfaces/vector_interface.c \
- datawizard/interfaces/bcsr_filters.c \
- datawizard/interfaces/csr_filters.c \
- datawizard/interfaces/vector_filters.c \
- datawizard/interfaces/variable_interface.c \
- datawizard/interfaces/void_interface.c \
- datawizard/interfaces/multiformat_interface.c \
- util/execute_on_all.c \
- util/starpu_create_sync_task.c \
- util/file.c \
- util/misc.c \
- util/openmp_runtime_support.c \
- util/openmp_runtime_support_environment.c \
- util/openmp_runtime_support_omp_api.c \
- util/starpu_data_cpy.c \
- util/starpu_task_insert.c \
- util/starpu_task_insert_utils.c \
- debug/traces/starpu_fxt.c \
- debug/traces/starpu_fxt_mpi.c \
- debug/traces/starpu_fxt_dag.c \
- debug/traces/starpu_paje.c \
- debug/latency.c \
- debug/structures_size.c \
- profiling/profiling.c \
- profiling/bound.c \
- profiling/profiling_helpers.c \
- top/starpu_top.c \
- top/starpu_top_task.c \
- top/starpu_top_message_queue.c \
- top/starpu_top_connection.c \
- worker_collection/worker_list.c \
- worker_collection/worker_tree.c \
- sched_policies/component_worker.c \
- sched_policies/component_sched.c \
- sched_policies/component_fifo.c \
- sched_policies/prio_deque.c \
- sched_policies/helper_mct.c \
- sched_policies/component_prio.c \
- sched_policies/component_random.c \
- sched_policies/component_eager.c \
- sched_policies/component_eager_calibration.c \
- sched_policies/component_mct.c \
- sched_policies/component_heft.c \
- sched_policies/component_best_implementation.c \
- sched_policies/component_perfmodel_select.c \
- sched_policies/component_composed.c \
- sched_policies/modular_eager.c \
- sched_policies/modular_eager_prefetching.c \
- sched_policies/modular_prio.c \
- sched_policies/modular_prio_prefetching.c \
- sched_policies/modular_random.c \
- sched_policies/modular_random_prefetching.c \
- sched_policies/modular_heft.c \
- sched_policies/modular_heft2.c
- if STARPU_HAVE_LEVELDB
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += core/disk_ops/disk_leveldb.cpp
- endif
- if STARPU_USE_CPU
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/cpu/driver_cpu.c
- endif
- if STARPU_USE_CUDA
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/cuda/driver_cuda.c
- else
- if STARPU_SIMGRID
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/cuda/driver_cuda.c
- endif
- endif
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/cuda/starpu_cublas.c
- if STARPU_USE_OPENCL
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/opencl/driver_opencl.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/opencl/driver_opencl_utils.c
- else
- if STARPU_SIMGRID
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/opencl/driver_opencl.c
- endif
- endif
- if STARPU_USE_SCC
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/scc/driver_scc_common.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/scc/driver_scc_source.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/scc/driver_scc_sink.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/scc/driver_scc_utils.c
- endif
- if STARPU_LINUX_SYS
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += core/disk_ops/disk_unistd_o_direct.c
- endif
- #########################################
- # #
- # Generic MP compilation #
- # #
- #########################################
- if STARPU_USE_MP
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/mp_common/mp_common.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/mp_common/source_common.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/mp_common/sink_common.c
- endif
- #########################################
- # #
- # MIC compilation #
- # #
- #########################################
- if STARPU_USE_MIC
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/mic/driver_mic_common.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/mic/driver_mic_source.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/mic/driver_mic_sink.c
- libstarpu_@STARPU_EFFECTIVE_VERSION@_la_SOURCES += drivers/mic/driver_mic_utils.c
- endif
- #########################################
- showcheck:
- -cat /dev/null
|