소스 검색

drop unused field

Samuel Thibault 12 년 전
부모
커밋
994271f8c3
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      include/starpu_task.h

+ 1 - 4
include/starpu_task.h

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
  *
- * Copyright (C) 2010-2012  Université de Bordeaux 1
+ * Copyright (C) 2010-2013  Université de Bordeaux 1
  * Copyright (C) 2010, 2011, 2012  Centre National de la Recherche Scientifique
  * Copyright (C) 2010, 2011, 2012  Centre National de la Recherche Scientifique
  * Copyright (C) 2011  Télécom-SudParis
  * Copyright (C) 2011  Télécom-SudParis
  * Copyright (C) 2011  INRIA
  * Copyright (C) 2011  INRIA
@@ -210,8 +210,6 @@ struct starpu_task
 	/* Number of flops computed by this tag, used by resource reallocation for contexts */
 	/* Number of flops computed by this tag, used by resource reallocation for contexts */
 	double flops;
 	double flops;
 
 
-	unsigned already_pushed;
-
 	/* Whether the scheduler has pushed the task on some queue */
 	/* Whether the scheduler has pushed the task on some queue */
 	unsigned scheduled;
 	unsigned scheduled;
 };
 };
@@ -243,7 +241,6 @@ struct starpu_task
 	.sched_ctx = 0,					\
 	.sched_ctx = 0,					\
 	.hypervisor_tag = 0,				\
 	.hypervisor_tag = 0,				\
 	.flops = 0.0,					\
 	.flops = 0.0,					\
-	.already_pushed = 0,				\
 		.scheduled = 0				\
 		.scheduled = 0				\
 }
 }