| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010, 2012-2013 Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2013 Centre National de la Recherche Scientifique
- *
- * 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.
- */
- #ifndef __CG_H__
- #define __CG_H__
- #include <starpu.h>
- #include <common/config.h>
- /* we do not necessarily want to allocate room for 256 dependencies, but we
- want to handle the few situation where there are a lot of dependencies as
- well */
- #define STARPU_DYNAMIC_DEPS_SIZE 1
- /* randomly choosen ! */
- #ifndef STARPU_DYNAMIC_DEPS_SIZE
- #define STARPU_NMAXDEPS 256
- #endif
- struct _starpu_job;
- /* Completion Group list, records both the number of expected notifications
- * before the completion can start, and the list of successors when the
- * completion is finished. */
- struct _starpu_cg_list
- {
- /* Protects atomicity of the list and the terminated flag */
- struct _starpu_spinlock lock;
- /* Number of notifications to be waited for */
- unsigned ndeps; /* how many deps ? */
- unsigned ndeps_completed; /* how many deps are done ? */
- /* Whether the completion is finished.
- * For restartable/restarted tasks, only the first iteration is taken into account here.
- */
- unsigned terminated;
- /* List of successors */
- unsigned nsuccs; /* how many successors ? */
- #ifdef STARPU_DYNAMIC_DEPS_SIZE
- unsigned succ_list_size; /* How many allocated items in succ */
- struct _starpu_cg **succ;
- #else
- struct _starpu_cg *succ[STARPU_NMAXDEPS];
- #endif
- };
- enum _starpu_cg_type
- {
- STARPU_CG_APPS=(1<<0),
- STARPU_CG_TAG=(1<<1),
- STARPU_CG_TASK=(1<<2)
- };
- /* Completion Group */
- struct _starpu_cg
- {
- unsigned ntags; /* number of tags depended on */
- unsigned remaining; /* number of remaining tags */
- enum _starpu_cg_type cg_type;
- union
- {
- /* STARPU_CG_TAG */
- struct _starpu_tag *tag;
- /* STARPU_CG_TASK */
- struct _starpu_job *job;
- /* STARPU_CG_APPS */
- /* in case this completion group is related to an application,
- * we have to explicitely wake the waiting thread instead of
- * reschedule the corresponding task */
- struct
- {
- unsigned completed;
- starpu_pthread_mutex_t cg_mutex;
- starpu_pthread_cond_t cg_cond;
- } succ_apps;
- } succ;
- };
- void _starpu_cg_list_init(struct _starpu_cg_list *list);
- void _starpu_cg_list_deinit(struct _starpu_cg_list *list);
- int _starpu_add_successor_to_cg_list(struct _starpu_cg_list *successors, struct _starpu_cg *cg);
- void _starpu_notify_cg(struct _starpu_cg *cg);
- void _starpu_notify_cg_list(struct _starpu_cg_list *successors);
- void _starpu_notify_task_dependencies(struct _starpu_job *j);
- #endif // __CG_H__
|