ソースを参照

there are some optimizations with eager, just not wise scheduling

Samuel Thibault 13 年 前
コミット
70864cd9ea
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      src/sched_policies/eager_central_policy.c

+ 1 - 1
src/sched_policies/eager_central_policy.c

@@ -32,7 +32,7 @@ static pthread_mutex_t sched_mutex;
 static void initialize_eager_center_policy(struct starpu_machine_topology *topology,
 		   __attribute__ ((unused)) struct starpu_sched_policy *_policy)
 {
-	if (!getenv("STARPU_SILENT")) fprintf(stderr,"Warning: you are running the default eager scheduler, which does not include optimizations. Make sure to read the StarPU documentation about adding performance models in order to be able to use the heft or dmda schedulers instead.\n");
+	if (!getenv("STARPU_SILENT")) fprintf(stderr,"Warning: you are running the default eager scheduler, which is not very smart. Make sure to read the StarPU documentation about adding performance models in order to be able to use the heft or dmda schedulers instead.\n");
 
 	/* there is only a single queue in that trivial design */
 	fifo = _starpu_create_fifo();