Samuel Thibault 13 년 전
부모
커밋
b609367e1d
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/sched_policies/heft.c

+ 3 - 3
src/sched_policies/heft.c

@@ -35,9 +35,9 @@ typedef struct {
 	double idle_power;
 } heft_data;
 
-static double exp_start[STARPU_NMAXWORKERS];
-static double exp_end[STARPU_NMAXWORKERS];
-static double exp_len[STARPU_NMAXWORKERS];
+static double exp_start[STARPU_NMAXWORKERS];	/* of the first queued task */
+static double exp_end[STARPU_NMAXWORKERS];	/* of the set of queued tasks */
+static double exp_len[STARPU_NMAXWORKERS];	/* of the last queued task */
 static double ntasks[STARPU_NMAXWORKERS];