StarPU Internal Handbook
fifo_queues.h
Go to the documentation of this file.
1/* StarPU --- Runtime system for heterogeneous multicore architectures.
2 *
3 * Copyright (C) 2008-2022 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
4 * Copyright (C) 2016 Uppsala University
5 *
6 * StarPU is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or (at
9 * your option) any later version.
10 *
11 * StarPU is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 *
15 * See the GNU Lesser General Public License in COPYING.LGPL for more details.
16 */
17
18#ifndef __FIFO_QUEUES_H__
19#define __FIFO_QUEUES_H__
20
21#include <core/task.h>
22
26{
28 struct starpu_task_list taskq;
29
31 unsigned ntasks;
32
35
38
40 unsigned nprocessed;
41
43 double exp_start;
46 double exp_end;
47 double exp_len;
49 double pipeline_len;
50};
51
52
53#endif /* __FIFO_QUEUES_H__ */
unsigned pipeline_ntasks
Definition: fifo_queues.h:34
double exp_len
Definition: fifo_queues.h:47
double exp_end
Definition: fifo_queues.h:46
unsigned nprocessed
Definition: fifo_queues.h:40
double * exp_len_per_priority
Definition: fifo_queues.h:48
double exp_start
Definition: fifo_queues.h:43
double pipeline_len
Definition: fifo_queues.h:49
unsigned * ntasks_per_priority
Definition: fifo_queues.h:37
unsigned ntasks
Definition: fifo_queues.h:31
struct starpu_task_list taskq
Definition: fifo_queues.h:28
Definition: fifo_queues.h:26