소스 검색

Number of executed tasks is not just approximate actually.

Samuel Thibault 14 년 전
부모
커밋
e8b58ea78d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/profiling/profiling_helpers.c

+ 1 - 1
src/profiling/profiling_helpers.c

@@ -78,7 +78,7 @@ void starpu_worker_profiling_helper_display_summary(void)
 			if (info.power_consumed)
 				fprintf(stderr, "\t%lf J consumed\n", info.power_consumed);
 		} else {
-			fprintf(stderr, "\t%-32s\tapproximately %d task(s)\n", name, info.executed_tasks);
+			fprintf(stderr, "\t%-32s\t%d task(s)\n", name, info.executed_tasks);
 		}
 
 		sum_consumed += info.power_consumed;